(self)
| 268 | self._check_import_error(script_dir, msg) |
| 269 | |
| 270 | def test_zipfile(self): |
| 271 | with os_helper.temp_dir() as script_dir: |
| 272 | script_name = _make_test_script(script_dir, '__main__') |
| 273 | zip_name, run_name = make_zip_script(script_dir, 'test_zip', script_name) |
| 274 | self._check_script(zip_name, run_name, zip_name, zip_name, '', |
| 275 | zipimport.zipimporter) |
| 276 | |
| 277 | def test_zipfile_compiled_timestamp(self): |
| 278 | with os_helper.temp_dir() as script_dir: |
nothing calls this directly
no test coverage detected