(self)
| 51 | assert result == "true" |
| 52 | |
| 53 | def test_run_git_failure(self): |
| 54 | stdout, stderr, rc = _run_git(["rev-parse", "--is-inside-work-tree"], "/tmp") |
| 55 | assert rc != 0 |
| 56 | |
| 57 | def test_run_git_timeout(self): |
| 58 | stdout, stderr, rc = _run_git(["log"], timeout=0.001) |
nothing calls this directly
no test coverage detected