(self, fn)
| 577 | self.assertTrue(os.path.exists(path)) |
| 578 | |
| 579 | def assertNotCompiled(self, fn): |
| 580 | path = importlib.util.cache_from_source(fn) |
| 581 | self.assertFalse(os.path.exists(path)) |
| 582 | |
| 583 | def test_no_args_compiles_path(self): |
| 584 | # Note that -l is implied for the no args case. |
no test coverage detected