(self)
| 192 | self.__assert_commit(self.TRACKED_FP) |
| 193 | |
| 194 | def test_commit_only_untrack(self): |
| 195 | gl.commit("-m='msg'", self.UNTRACKED_FP) |
| 196 | self.__assert_commit(self.UNTRACKED_FP) |
| 197 | |
| 198 | def test_commit_only_untrack_relative(self): |
| 199 | os.chdir(self.DIR) |
nothing calls this directly
no test coverage detected