(self)
| 1613 | class ExtractTests(unittest.TestCase): |
| 1614 | |
| 1615 | def make_test_file(self): |
| 1616 | with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_STORED) as zipfp: |
| 1617 | for fpath, fdata in SMALL_TEST_DATA: |
| 1618 | zipfp.writestr(fpath, fdata) |
| 1619 | |
| 1620 | def test_extract(self): |
| 1621 | with temp_cwd(): |
no test coverage detected