(self)
| 1630 | class ExtractTests(unittest.TestCase): |
| 1631 | |
| 1632 | def make_test_file(self): |
| 1633 | with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_STORED) as zipfp: |
| 1634 | for fpath, fdata in SMALL_TEST_DATA: |
| 1635 | zipfp.writestr(fpath, fdata) |
| 1636 | |
| 1637 | def test_extract(self): |
| 1638 | with temp_cwd(): |
no test coverage detected