(self)
| 690 | compiled_name, expect_spec=False) |
| 691 | |
| 692 | def test_directory(self): |
| 693 | with temp_dir() as script_dir: |
| 694 | mod_name = '__main__' |
| 695 | script_name = self._make_test_script(script_dir, mod_name) |
| 696 | self._check_script(script_dir, "<run_path>", script_name, |
| 697 | script_dir, mod_name=mod_name) |
| 698 | |
| 699 | def test_directory_compiled(self): |
| 700 | with temp_dir() as script_dir: |
nothing calls this directly
no test coverage detected