(self, git_repo)
| 78 | |
| 79 | class TestGetDefaultBranch: |
| 80 | def test_get_default(self, git_repo): |
| 81 | default = get_default_branch(git_repo) |
| 82 | assert default in ("main", "master") |
| 83 | |
| 84 | |
| 85 | class TestGetFileStatus: |
nothing calls this directly
no test coverage detected