(self)
| 708 | script_dir, mod_name=mod_name) |
| 709 | |
| 710 | def test_directory_error(self): |
| 711 | with temp_dir() as script_dir: |
| 712 | mod_name = 'not_main' |
| 713 | script_name = self._make_test_script(script_dir, mod_name) |
| 714 | msg = "can't find '__main__' module in %r" % script_dir |
| 715 | self._check_import_error(script_dir, msg) |
| 716 | |
| 717 | def test_zipfile(self): |
| 718 | with temp_dir() as script_dir: |
nothing calls this directly
no test coverage detected