소스 검색

Merge pull request #641 from denibertovic/master

rename to python-imports and add bz2 test
yosifkit 10 년 전
부모
커밋
baf2f351ea
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