Parcourir la source

rename to python-imports and add bz2

Closes 560
Deni Bertovic il y a 10 ans
Parent
commit
c426e88c0d
2 fichiers modifiés avec 3 ajouts et 0 suppressions
  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