(test)
| 43 | ('ziptest2dir/ziptest3dir/ziptest4dir/_ziptest3', '6y7u8i9o0p')] |
| 44 | |
| 45 | def get_files(test): |
| 46 | yield TESTFN2 |
| 47 | with TemporaryFile() as f: |
| 48 | yield f |
| 49 | test.assertFalse(f.closed) |
| 50 | with io.BytesIO() as f: |
| 51 | yield f |
| 52 | test.assertFalse(f.closed) |
| 53 | |
| 54 | |
| 55 | class LazyImportTest(unittest.TestCase): |
no test coverage detected
searching dependent graphs…