From d888f029a49854c7733317ebe0a73eb224549638 Mon Sep 17 00:00:00 2001 From: Kyle Prifogle Date: Mon, 30 Mar 2020 12:10:11 -0400 Subject: Adding snappy parquet to test --- test/test.py | 2 ++ test/testdata/test.snappy.parquet | Bin 0 -> 654 bytes 2 files changed, 2 insertions(+) create mode 100644 test/testdata/test.snappy.parquet (limited to 'test') diff --git a/test/test.py b/test/test.py index d067b15..266d214 100755 --- a/test/test.py +++ b/test/test.py @@ -64,6 +64,7 @@ class MagicTest(unittest.TestCase): 'magic._pyc_': 'application/octet-stream', 'test.pdf': 'application/pdf', 'test.gz': ('application/gzip', 'application/x-gzip'), + 'test.snappy.parquet': 'application/octet-stream', 'text.txt': 'text/plain', b'\xce\xbb'.decode('utf-8'): 'text/plain', b'\xce\xbb': 'text/plain', @@ -90,6 +91,7 @@ class MagicTest(unittest.TestCase): 'from Unix, original size modulo 2^32 15' ), 'text.txt': 'ASCII text', + 'test.snappy.parquet': 'Apache Parquet' }, buf_equals_file=False) finally: del os.environ['TZ'] diff --git a/test/testdata/test.snappy.parquet b/test/testdata/test.snappy.parquet new file mode 100644 index 0000000..c2f96f6 Binary files /dev/null and b/test/testdata/test.snappy.parquet differ -- cgit v1.2.1