(self)
| 221 | ErrorReturnCode, gl.commit, m='msg', include='non-existent') |
| 222 | |
| 223 | def test_commit_dir(self): |
| 224 | fp = 'dir/f' |
| 225 | utils.write_file(fp) |
| 226 | gl.commit(fp, m='msg') |
| 227 | self.__assert_commit('dir/f') |
| 228 | |
| 229 | def __assert_commit(self, *expected_committed): |
| 230 | h = utils.stdout(gl.history(v=True)) |
nothing calls this directly
no test coverage detected