(self)
| 196 | self.__assert_commit(self.UNTRACKED_FP) |
| 197 | |
| 198 | def test_commit_only_untrack_relative(self): |
| 199 | os.chdir(self.DIR) |
| 200 | self.assertRaises(ErrorReturnCode, gl.commit, self.UNTRACKED_FP, m='msg') |
| 201 | gl.commit('../' + self.UNTRACKED_FP, m='msg') |
| 202 | self.__assert_commit(self.UNTRACKED_FP) |
| 203 | |
| 204 | def test_commit_include(self): |
| 205 | gl.commit("-m='msg'", include=self.UNTRACKED_FP) |
nothing calls this directly
no test coverage detected