We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88727b5 commit 34dc1a3Copy full SHA for 34dc1a3
numcodecs/tests/test_checksum32.py
@@ -81,6 +81,15 @@ def test_err_encode_list(codec):
81
codec.encode(data)
82
83
84
+def test_err_location():
85
+ with pytest.raises(ValueError):
86
+ CRC32(location="foo")
87
88
+ CRC32C(location="foo")
89
90
+ Adler32(location="foo")
91
+
92
93
def test_repr():
94
check_repr("CRC32(location='start')")
95
check_repr("CRC32C(location='start')")
0 commit comments