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
commit861721314965cf89beaa17f3dfcdce90ccd8d089 (patch)
tree2c3d6d54ca271c2dd925f2dee765fcc426610b86 /ruby
parentb0062a7f6f47b9a4340d14c6fb0a3ae0f60c8259 (diff)
downloadmsgpack-python-861721314965cf89beaa17f3dfcdce90ccd8d089.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