(self)
| 98 | self.fail('no __pycache__/_test.*.pyc file exists') |
| 99 | |
| 100 | def test_absolute_path(self): |
| 101 | py_compile.compile(self.source_path, self.pyc_path) |
| 102 | self.assertTrue(os.path.exists(self.pyc_path)) |
| 103 | self.assert_cache_path_exists(False) |
| 104 | |
| 105 | def test_do_not_overwrite_symlinks(self): |
| 106 | # In the face of a cfile argument being a symlink, bail out. |
nothing calls this directly
no test coverage detected