(self)
| 715 | self._check_import_error(script_dir, msg) |
| 716 | |
| 717 | def test_zipfile(self): |
| 718 | with temp_dir() as script_dir: |
| 719 | mod_name = '__main__' |
| 720 | script_name = self._make_test_script(script_dir, mod_name) |
| 721 | zip_name, fname = make_zip_script(script_dir, 'test_zip', script_name) |
| 722 | self._check_script(zip_name, "<run_path>", fname, zip_name, |
| 723 | mod_name=mod_name, check_loader=False) |
| 724 | |
| 725 | def test_zipfile_compiled(self): |
| 726 | with temp_dir() as script_dir: |
nothing calls this directly
no test coverage detected