Actions
Bug #15515
closedOpenStruct raising NoMethodError instead of ArgumentError
Description
When an OpenStruct
has some attribute foo
, calling the foo
method with an argument gives a no method error:
foo = OpenStruct.new(bar: 'baz')
foo.bar(0) # => NoMethodError (undefined method `bar' for #<OpenStruct bar="baz">)
This is confusing, since foo.respond_to?(:bar) # => true
. I would expect:
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
Actions
Like0
Like0Like0Like0Like0Like0Like0