From: lisa.ugray@... Date: 2019-01-07T16:26:20+00:00 Subject: [ruby-core:90921] [Ruby trunk Bug#15515] OpenStruct raising NoMethodError instead of ArgumentError Issue #15515 has been updated by lugray (Lisa Ugray). devpolish (Nardo Nykolyszyn) wrote: > Did you mean? OpenStruct Yes, thanks, fixed. ---------------------------------------- Bug #15515: OpenStruct raising NoMethodError instead of ArgumentError https://bugs.ruby-lang.org/issues/15515#change-76114 * Author: lugray (Lisa Ugray) * Status: Open * Priority: Normal * Assignee: * 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: