summaryrefslogtreecommitdiff
path: root/ruby
diff options
context:
space:
mode:
authorfrsyuki <frsyuki@users.sourceforge.jp>2009-06-03 22:01:27 +0900
committerfrsyuki <frsyuki@users.sourceforge.jp>2009-06-03 22:01:27 +0900
commitb3846a411fb148c30cf99c7297b70fe8ad3bfaa9 (patch)
tree2c3d6d54ca271c2dd925f2dee765fcc426610b86 /ruby
parent62231983d7580231bf1e622d9e6a39c708a0a48c (diff)
downloadmsgpack-python-b3846a411fb148c30cf99c7297b70fe8ad3bfaa9.tar.gz
cpp: fix map<K, V> converter
Diffstat (limited to 'ruby')
-rw-r--r--ruby/test_case.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/ruby/test_case.rb b/ruby/test_case.rb
index 2d897df..4fbcea3 100644
--- a/ruby/test_case.rb
+++ b/ruby/test_case.rb
@@ -219,6 +219,7 @@ class MessagePackTestFormat < Test::Unit::TestCase
def match(obj, buf)
assert_equal(obj.to_msgpack, buf)
+ assert_equal(MessagePack::unpack(buf), obj)
end
end