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