Actions
Bug #7348
closedmarshaling an object by a float does not work
Description
The below calls
object doesn't round trip through marshal on edge ruby:
def test_marshal_object_and_float
e = Object.new
calls = []
calls << [2.0, e]
calls << [e]
assert_equal calls, Marshal.load(Marshal.dump(calls))
end
When I run this test case, for some reason, the float takes the place of the object in the second array:
[36/82] TestMarshal#test_marshal_object_and_float = 0.00 s
- Failure:
test_marshal_object_and_float(TestMarshal) [/Users/aaron/git/ruby/test/ruby/test_marshal.rb:40]:
<[[2.0, #Object:0x007fa5c20b08a0], [#Object:0x007fa5c20b08a0]]> expected but was
<[[2.0, #Object:0x007fa5c20b05a8], [2.0]]>.
I've attached a failing test case.
Files
Actions
Like0
Like0Like0Like0Like0Like0