(self)
| 280 | self._check_import_error(script_dir, msg) |
| 281 | |
| 282 | def test_zipfile(self): |
| 283 | with os_helper.temp_dir() as script_dir: |
| 284 | script_name = _make_test_script(script_dir, '__main__') |
| 285 | zip_name, run_name = make_zip_script(script_dir, 'test_zip', script_name) |
| 286 | self._check_script(zip_name, run_name, zip_name, zip_name, '', |
| 287 | zipimport.zipimporter) |
| 288 | |
| 289 | def test_zipfile_compiled_timestamp(self): |
| 290 | with os_helper.temp_dir() as script_dir: |
nothing calls this directly
no test coverage detected