(self)
| 303 | self.assertTrue(os.path.exists(self.cache_path)) |
| 304 | |
| 305 | def test_with_files(self): |
| 306 | rc, stdout, stderr = self.pycompilecmd(self.source_path, self.source_path) |
| 307 | self.assertEqual(rc, 0) |
| 308 | self.assertEqual(stdout, b'') |
| 309 | self.assertEqual(stderr, b'') |
| 310 | self.assertTrue(os.path.exists(self.cache_path)) |
| 311 | |
| 312 | def test_bad_syntax(self): |
| 313 | bad_syntax = os.path.join(os.path.dirname(__file__), |
nothing calls this directly
no test coverage detected