summaryrefslogtreecommitdiff
path: root/test/test_except.py
diff options
context:
space:
mode:
authorKeiji Muraishi <keiji.muraishi@gmail.com>2010-03-31 17:29:07 +0900
committerKeiji Muraishi <keiji.muraishi@gmail.com>2010-03-31 17:29:07 +0900
commita50a83f073df4b3784d468d36d58111404505ffe (patch)
tree29a26f3987f2ddfdad4b67214de5efaf980bb973 /test/test_except.py
parent0159084ce958aeb1ba7ffb74ded51a9e4c5bb457 (diff)
downloadmsgpack-python-a50a83f073df4b3784d468d36d58111404505ffe.tar.gz
should raise TypeError on find unsupported value
Diffstat (limited to 'test/test_except.py')
-rw-r--r--test/test_except.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/test_except.py b/test/test_except.py
new file mode 100644
index 0000000..574728f
--- /dev/null
+++ b/test/test_except.py
@@ -0,0 +1,14 @@
+#!/usr/bin/env python
+# coding: utf-8
+
+from nose.tools import *
+from msgpack import packs, unpacks
+
+import datetime
+
+def test_raise_on_find_unsupported_value():
+ assert_raises(TypeError, packs, datetime.datetime.now())
+
+if __name__ == '__main__':
+ from nose import main
+ main()