Project

General

Profile

Actions

Bug #15515

closed

OpenStruct raising NoMethodError instead of ArgumentError

Added by lugray (Lisa Ugray) about 5 years ago. Updated almost 5 years ago.

Status:
Closed
Target version:
-
ruby -v:
ruby 2.7.0dev (2019-01-07 trunk 66747) [x86_64-darwin18]
[ruby-core:90918]

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

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0Like0