diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2017-04-10 09:47:12 -0700 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2017-05-15 19:07:10 -0700 |
commit | 17c73c9902fde445d4697dbf7d7a2d9652410bb2 (patch) | |
tree | 190b373e4222736d02c99c90c190868bf203a236 /dev-python/lz4/files | |
parent | dev-python/wsaccel: Version bump, Adds python-3.5, 3.6 support and tests (diff) | |
download | gentoo-17c73c9902fde445d4697dbf7d7a2d9652410bb2.tar.gz gentoo-17c73c9902fde445d4697dbf7d7a2d9652410bb2.tar.bz2 gentoo-17c73c9902fde445d4697dbf7d7a2d9652410bb2.zip |
dev-python/lz4: Enable tests, add python-3.6 to PYTHON_COMPAT
Add missing test.py file, test dep.
Package-Manager: Portage-2.3.5, Repoman-2.3.2_p30
Diffstat (limited to 'dev-python/lz4/files')
-rw-r--r-- | dev-python/lz4/files/test.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/dev-python/lz4/files/test.py b/dev-python/lz4/files/test.py new file mode 100644 index 000000000000..9469a03da328 --- /dev/null +++ b/dev-python/lz4/files/test.py @@ -0,0 +1,16 @@ +import lz4 +import sys + + +import unittest +import os + +class TestLZ4(unittest.TestCase): + + def test_random(self): + DATA = os.urandom(128 * 1024) # Read 128kb + self.assertEqual(DATA, lz4.loads(lz4.dumps(DATA))) + +if __name__ == '__main__': + unittest.main() + |