(self, git_repo)
| 47 | |
| 48 | class TestRunGit: |
| 49 | def test_run_git_ok(self, git_repo): |
| 50 | result = _run_git_ok(["rev-parse", "--is-inside-work-tree"], git_repo) |
| 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") |
nothing calls this directly
no test coverage detected