(self, git_repo)
| 72 | |
| 73 | class TestGetCurrentBranch: |
| 74 | def test_get_branch(self, git_repo): |
| 75 | branch = get_current_branch(git_repo) |
| 76 | assert branch in ("main", "master") |
| 77 | |
| 78 | |
| 79 | class TestGetDefaultBranch: |
nothing calls this directly
no test coverage detected