(self)
| 657 | self.assertRaisesRegex(ImportError, msg, run_path, script_name) |
| 658 | |
| 659 | def test_basic_script(self): |
| 660 | with temp_dir() as script_dir: |
| 661 | mod_name = 'script' |
| 662 | script_name = self._make_test_script(script_dir, mod_name) |
| 663 | self._check_script(script_name, "<run_path>", script_name, |
| 664 | script_name, expect_spec=False) |
| 665 | |
| 666 | def test_basic_script_with_pathlike_object(self): |
| 667 | with temp_dir() as script_dir: |
nothing calls this directly
no test coverage detected