mirror of
https://github.com/python/cpython.git
synced 2025-07-29 06:05:00 +00:00
#6026 - fix tests that failed without zlib
This commit is contained in:
parent
21121e64b4
commit
1036a7f7e1
7 changed files with 51 additions and 6 deletions
|
@ -311,6 +311,7 @@ class TestsWithSourceFile(unittest.TestCase):
|
|||
self.assertEqual(zipfp.read(TESTFN), file(TESTFN).read())
|
||||
zipfp.close()
|
||||
|
||||
@skipUnless(zlib, "requires zlib")
|
||||
def test_per_file_compression(self):
|
||||
# Check that files within a Zip archive can have different compression options
|
||||
zipfp = zipfile.ZipFile(TESTFN2, "w")
|
||||
|
@ -882,6 +883,7 @@ class DecryptionTests(unittest.TestCase):
|
|||
self.zip2.setpassword("perl")
|
||||
self.assertRaises(RuntimeError, self.zip2.read, "zero")
|
||||
|
||||
@skipUnless(zlib, "requires zlib")
|
||||
def test_good_password(self):
|
||||
self.zip.setpassword("python")
|
||||
self.assertEquals(self.zip.read("test.txt"), self.plain)
|
||||
|
@ -982,6 +984,7 @@ class TestsWithRandomBinaryFiles(unittest.TestCase):
|
|||
self.zip_random_open_test(f, zipfile.ZIP_STORED)
|
||||
|
||||
|
||||
@skipUnless(zlib, "requires zlib")
|
||||
class TestsWithMultipleOpens(unittest.TestCase):
|
||||
def setUp(self):
|
||||
# Create the ZIP archive
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue