summaryrefslogtreecommitdiff
path: root/tests/test_module_attributes.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_module_attributes.py')
-rw-r--r--tests/test_module_attributes.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/test_module_attributes.py b/tests/test_module_attributes.py
index d487aa8..bb4247b 100644
--- a/tests/test_module_attributes.py
+++ b/tests/test_module_attributes.py
@@ -9,25 +9,6 @@ class TestModuleAttributes(unittest.TestCase):
self.assertEqual(zstd.__version__, "0.19.0")
- def test_features(self):
- self.assertIsInstance(zstd.backend_features, set)
-
- expected = {
- "cext": {
- "buffer_types",
- "multi_compress_to_buffer",
- "multi_decompress_to_buffer",
- },
- "cffi": set(),
- "rust": {
- "buffer_types",
- "multi_compress_to_buffer",
- "multi_decompress_to_buffer",
- },
- }[zstd.backend]
-
- self.assertEqual(zstd.backend_features, expected)
-
def test_constants(self):
self.assertEqual(zstd.MAX_COMPRESSION_LEVEL, 22)
self.assertEqual(zstd.FRAME_HEADER, b"\x28\xb5\x2f\xfd")