(self, fn)
| 573 | return rc, out, err |
| 574 | |
| 575 | def assertCompiled(self, fn): |
| 576 | path = importlib.util.cache_from_source(fn) |
| 577 | self.assertTrue(os.path.exists(path)) |
| 578 | |
| 579 | def assertNotCompiled(self, fn): |
| 580 | path = importlib.util.cache_from_source(fn) |
no test coverage detected