mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-13 09:40:32 +08:00
7 lines
130 B
Ruby
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 |