summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorpalaviv <palaviv@gmail.com>2016-02-12 15:39:50 +0200
committerpalaviv <palaviv@gmail.com>2016-02-12 15:39:50 +0200
commite15085db0362899520f714e3959c37721c839cef (patch)
tree00d589ef5527c427194d31e806db4696ccde24b8 /test
parent1183eff688189b0e94ea9e15c5ae13c2f757d745 (diff)
downloadmsgpack-python-e15085db0362899520f714e3959c37721c839cef.tar.gz
removed MsgpackBaseException
Diffstat (limited to 'test')
-rw-r--r--test/test_limits.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/test_limits.py b/test/test_limits.py
index 34acf7c..e9bc9df 100644
--- a/test/test_limits.py
+++ b/test/test_limits.py
@@ -4,11 +4,11 @@ from __future__ import absolute_import, division, print_function, unicode_litera
import pytest
from msgpack import packb, unpackb, Packer, Unpacker, ExtType, PackException, PackOverflowError, PackValueError
-from msgpack import UnpackValueError, UnpackException, MsgpackBaseException
+from msgpack import UnpackValueError, UnpackException
@pytest.mark.parametrize("expected_exception", [OverflowError, ValueError, PackOverflowError,
- PackException, PackValueError, MsgpackBaseException])
+ PackException, PackValueError])
def test_integer(expected_exception):
x = -(2 ** 63)
assert unpackb(packb(x)) == x
@@ -21,7 +21,7 @@ def test_integer(expected_exception):
packb(x+1)
-@pytest.mark.parametrize("expected_exception", [ValueError, PackException, PackValueError, MsgpackBaseException])
+@pytest.mark.parametrize("expected_exception", [ValueError, PackException, PackValueError])
def test_array_header(expected_exception):
packer = Packer()
packer.pack_array_header(2**32-1)
@@ -29,7 +29,7 @@ def test_array_header(expected_exception):
packer.pack_array_header(2**32)
-@pytest.mark.parametrize("expected_exception", [ValueError, PackException, PackValueError, MsgpackBaseException])
+@pytest.mark.parametrize("expected_exception", [ValueError, PackException, PackValueError])
def test_map_header(expected_exception):
packer = Packer()
packer.pack_map_header(2**32-1)
@@ -37,7 +37,7 @@ def test_map_header(expected_exception):
packer.pack_array_header(2**32)
-@pytest.mark.parametrize("expected_exception", [ValueError, UnpackValueError, UnpackException, MsgpackBaseException])
+@pytest.mark.parametrize("expected_exception", [ValueError, UnpackValueError, UnpackException])
def test_max_str_len(expected_exception):
d = 'x' * 3
packed = packb(d)
@@ -52,7 +52,7 @@ def test_max_str_len(expected_exception):
unpacker.unpack()
-@pytest.mark.parametrize("expected_exception", [ValueError, UnpackValueError, UnpackException, MsgpackBaseException])
+@pytest.mark.parametrize("expected_exception", [ValueError, UnpackValueError, UnpackException])
def test_max_bin_len(expected_exception):
d = b'x' * 3
packed = packb(d, use_bin_type=True)
@@ -67,7 +67,7 @@ def test_max_bin_len(expected_exception):
unpacker.unpack()
-@pytest.mark.parametrize("expected_exception", [ValueError, UnpackValueError, UnpackException, MsgpackBaseException])
+@pytest.mark.parametrize("expected_exception", [ValueError, UnpackValueError, UnpackException])
def test_max_array_len(expected_exception):
d = [1,2,3]
packed = packb(d)
@@ -82,7 +82,7 @@ def test_max_array_len(expected_exception):
unpacker.unpack()
-@pytest.mark.parametrize("expected_exception", [ValueError, UnpackValueError, UnpackException, MsgpackBaseException])
+@pytest.mark.parametrize("expected_exception", [ValueError, UnpackValueError, UnpackException])
def test_max_map_len(expected_exception):
d = {1: 2, 3: 4, 5: 6}
packed = packb(d)
@@ -97,7 +97,7 @@ def test_max_map_len(expected_exception):
unpacker.unpack()
-@pytest.mark.parametrize("expected_exception", [ValueError, UnpackValueError, UnpackException, MsgpackBaseException])
+@pytest.mark.parametrize("expected_exception", [ValueError, UnpackValueError, UnpackException])
def test_max_ext_len(expected_exception):
d = ExtType(42, b"abc")
packed = packb(d)