diff options
author | INADA Naoki <songofacandy@gmail.com> | 2010-09-02 02:16:28 +0900 |
---|---|---|
committer | INADA Naoki <songofacandy@gmail.com> | 2010-09-02 02:16:28 +0900 |
commit | 039542ebcb8ca923c4414a414ecd62df43ff3f24 (patch) | |
tree | f83d588c3b227b1f55874bbd63d3e68c19799b26 /test3/test_except.py | |
parent | 1e8eeb8ebed50e8d39c69be653df06a10730631e (diff) | |
download | msgpack-python-039542ebcb8ca923c4414a414ecd62df43ff3f24.tar.gz |
python: Add test for python3 and fix found problems.
Diffstat (limited to 'test3/test_except.py')
-rw-r--r-- | test3/test_except.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test3/test_except.py b/test3/test_except.py new file mode 100644 index 0000000..574728f --- /dev/null +++ b/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() |