(self, git_repo)
| 61 | |
| 62 | class TestGetRepoRoot: |
| 63 | def test_valid_repo(self, git_repo): |
| 64 | root = get_repo_root(git_repo) |
| 65 | assert root is not None |
| 66 | assert os.path.isdir(root) |
| 67 | |
| 68 | def test_not_a_repo(self): |
| 69 | root = get_repo_root("/tmp") |
nothing calls this directly
no test coverage detected