(self)
| 673 | expect_spec=False) |
| 674 | |
| 675 | def test_basic_script_no_suffix(self): |
| 676 | with temp_dir() as script_dir: |
| 677 | mod_name = 'script' |
| 678 | script_name = self._make_test_script(script_dir, mod_name, |
| 679 | omit_suffix=True) |
| 680 | self._check_script(script_name, "<run_path>", script_name, |
| 681 | script_name, expect_spec=False) |
| 682 | |
| 683 | @unittest.skipIf(sys.implementation.cache_tag is None, |
| 684 | 'requires sys.implementation.cache_tag') |
nothing calls this directly
no test coverage detected