summaryrefslogtreecommitdiff
path: root/python/test3/test_except.py
diff options
context:
space:
mode:
authorINADA Naoki <songofacandy@gmail.com>2010-09-02 02:16:28 +0900
committerINADA Naoki <songofacandy@gmail.com>2010-09-02 02:16:28 +0900
commit8d0d2bd3fca404906aef8982a99a81b2acdc50a0 (patch)
tree50eba9d7406dd172d1e4c153b36a3105ad908288 /python/test3/test_except.py
parent2146f5f623ce4ee2afda660c77bce7852d4a1530 (diff)
downloadmsgpack-python-8d0d2bd3fca404906aef8982a99a81b2acdc50a0.tar.gz
python: Add test for python3 and fix found problems.
Diffstat (limited to 'python/test3/test_except.py')
-rw-r--r--python/test3/test_except.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/python/test3/test_except.py b/python/test3/test_except.py
new file mode 100644
index 0000000..574728f
--- /dev/null
+++ b/python/test3/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()