Browse Source

Merge pull request #641 from denibertovic/master

rename to python-imports and add bz2 test
yosifkit 10 years ago
parent
commit
baf2f351ea
2 changed files with 3 additions and 0 deletions
  1. 3 0
      test/tests/python-imports/container.py
  2. 0 0
      test/tests/python-imports/run.sh

+ 3 - 0
test/tests/python-zlib/container.py → test/tests/python-imports/container.py

@@ -1,3 +1,6 @@
 import zlib
+import bz2
 
 assert(zlib.decompress(zlib.compress(b'IT WORKS IT WORKS IT WORKS')) == b'IT WORKS IT WORKS IT WORKS')
+assert(bz2.decompress(bz2.compress(b'IT WORKS IT WORKS IT WORKS')) == b'IT WORKS IT WORKS IT WORKS')
+

+ 0 - 0
test/tests/python-zlib/run.sh → test/tests/python-imports/run.sh