فهرست منبع

rename to python-imports and add bz2

Closes 560
Deni Bertovic 10 سال پیش
والد
کامیت
c426e88c0d
2فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  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