From: ruby-core@... Date: 2019-04-14T13:50:59+00:00 Subject: [ruby-core:92282] [Ruby trunk Bug#15515] OpenStruct raising NoMethodError instead of ArgumentError Issue #15515 has been updated by marcandre (Marc-Andre Lafortune). Status changed from Open to Closed Merged. Thank you for your contribution! ---------------------------------------- Bug #15515: OpenStruct raising NoMethodError instead of ArgumentError https://bugs.ruby-lang.org/issues/15515#change-77617 * Author: lugray (Lisa Ugray) * Status: Closed * Priority: Normal * Assignee: marcandre (Marc-Andre Lafortune) * Target version: * ruby -v: ruby 2.7.0dev (2019-01-07 trunk 66747) [x86_64-darwin18] * Backport: 2.4: UNKNOWN, 2.5: UNKNOWN, 2.6: UNKNOWN ---------------------------------------- When an `OpenStruct` has some attribute `foo`, calling the `foo` method with an argument gives a no method error: ```ruby foo = OpenStruct.new(bar: 'baz') foo.bar(0) # => NoMethodError (undefined method `bar' for #) ``` This is confusing, since `foo.respond_to?(:bar) # => true`. I would expect: ```ruby foo = OpenStruct.new(bar: 'baz') foo.bar(0) # => ArgumentError (wrong number of arguments (given 1, expected 0)) ``` The included fixes this, and adjusts the arity `ArgumentError` for the setter to be in line with the default arity messaging too. ---Files-------------------------------- 0001-ostruct.rb-refine-arity-failure-message.patch (1.26 KB) 0001-ostruct.rb-refine-arity-failure-message.patch (1.96 KB) -- https://bugs.ruby-lang.org/ Unsubscribe: