diff options
author | Marc-Andre Lafortune <@marc-andre.ca> | 2020-10-06 17:10:46 -0400 |
---|---|---|
committer | Marc-Andre Lafortune <@marc-andre.ca> | 2020-10-06 17:11:08 -0400 |
commit | 1486785a5759c5cb0b7a7bf0bc5368cc9a280191 () | |
tree | c19e72f0df77dd3eb14cf9ad17937fd0a7fcc288 | |
parent | 260322fbc58a225d1c0323d53698ff62a31cf552 (diff) |
[lib/ostruct] Fix Marshal loading
-rw-r--r-- | lib/ostruct.rb | 5 | ||||
-rw-r--r-- | test/ostruct/test_ostruct.rb | 6 |
2 files changed, 7 insertions, 4 deletions
@@ -202,10 +202,7 @@ class OpenStruct # # Provides marshalling support for use by the Marshal library. # - def marshal_load(x) # :nodoc: - x.each_key{|key| new_ostruct_member!(key)} - @table = x - end # # Used internally to defined properties on the @@ -333,4 +333,10 @@ class TC_OpenStruct < Test::Unit::TestCase assert_equal true, os1.eql?(os2) assert_equal 300.42, os2.pension end end |