| expect(SubclassRedefiningParentKey.values).toeq(%w[redgreencrimson]) |
expect(SubclassRedefiningParentKey.values).toeq(%w[redgreencrimson])
Shouldn't this be only %w[green crimson] ?
Look a few lines above:
expect(SubclassRedefiningParentKey.to_h).toeq(RED: 'crimson',GREEN: 'green')
ruby-enum/spec/ruby-enum/enum_spec.rb
Line 436 in 9b8676c
Shouldn't this be only
%w[green crimson]?Look a few lines above: