Files
RubyMotion/test/TestSuite/app/test_marshal.rb
2012-09-22 21:57:31 +09:00

7 lines
130 B
Ruby

test_begin "test_marshal"
assert_equal %q{{"k"=>"v"}}, proc{
Marshal.load(Marshal.dump({"k"=>"v"}), lambda {|v| v})
}
test_end