(self)
| 263 | importlib.machinery.SourcelessFileLoader) |
| 264 | |
| 265 | def test_directory_error(self): |
| 266 | with os_helper.temp_dir() as script_dir: |
| 267 | msg = "can't find '__main__' module in %r" % script_dir |
| 268 | self._check_import_error(script_dir, msg) |
| 269 | |
| 270 | def test_zipfile(self): |
| 271 | with os_helper.temp_dir() as script_dir: |
nothing calls this directly
no test coverage detected