diff options
| author | Keiji Muraishi <keiji.muraishi@gmail.com> | 2010-03-31 17:29:07 +0900 |
|---|---|---|
| committer | Keiji Muraishi <keiji.muraishi@gmail.com> | 2010-03-31 17:29:07 +0900 |
| commit | 6c6df1adaf4f2b202a6241a408538d05fb2ae430 (patch) | |
| tree | 1c8a00654d4a49230d772e78fe99f62bfe6e69b6 /python/test/test_except.py | |
| parent | f91e1c17c0c22194b7a36aaa8290ec6f5e903e79 (diff) | |
| download | msgpack-python-6c6df1adaf4f2b202a6241a408538d05fb2ae430.tar.gz | |
should raise TypeError on find unsupported value
Diffstat (limited to 'python/test/test_except.py')
| -rw-r--r-- | python/test/test_except.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/python/test/test_except.py b/python/test/test_except.py new file mode 100644 index 0000000..574728f --- /dev/null +++ b/python/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() |
