From a779b79b47529f84cd71593f284788d939226d66 Mon Sep 17 00:00:00 2001 From: INADA Naoki Date: Mon, 25 Jan 2016 02:18:25 +0900 Subject: [PATCH] Add test for strict_types option --- test/test_stricttype.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/test_stricttype.py diff --git a/test/test_stricttype.py b/test/test_stricttype.py new file mode 100644 index 0000000..a20b5eb --- /dev/null +++ b/test/test_stricttype.py @@ -0,0 +1,15 @@ +# coding: utf-8 + +from collections import namedtuple +from msgpack import packb, unpackb + + +def test_namedtuple(): + T = namedtuple('T', "foo bar") + def default(o): + if isinstance(o, T): + return dict(o._asdict()) + raise TypeError('Unsupported type %s' % (type(o),)) + packed = packb(T(1, 42), strict_types=True, use_bin_type=True, default=default) + unpacked = unpackb(packed, encoding='utf-8') + assert unpacked == {'foo': 1, 'bar': 42}