(self, fn)
| 569 | return rc, out, err |
| 570 | |
| 571 | def assertCompiled(self, fn): |
| 572 | path = importlib.util.cache_from_source(fn) |
| 573 | self.assertTrue(os.path.exists(path)) |
| 574 | |
| 575 | def assertNotCompiled(self, fn): |
| 576 | path = importlib.util.cache_from_source(fn) |
no test coverage detected