(self)
| 74 | os.chdir(self.cwd_drive) |
| 75 | |
| 76 | def test_absolute_path(self): |
| 77 | py_compile.compile(self.source_path, self.pyc_path) |
| 78 | self.assertTrue(os.path.exists(self.pyc_path)) |
| 79 | self.assertFalse(os.path.exists(self.cache_path)) |
| 80 | |
| 81 | def test_do_not_overwrite_symlinks(self): |
| 82 | # In the face of a cfile argument being a symlink, bail out. |
nothing calls this directly
no test coverage detected