(self, git_repo)
| 151 | |
| 152 | class TestListWorktrees: |
| 153 | def test_list_main(self, git_repo): |
| 154 | worktrees = list_worktrees(git_repo) |
| 155 | assert len(worktrees) >= 1 |
| 156 | assert worktrees[0].is_main is True |
| 157 | |
| 158 | |
| 159 | class TestDiffResult: |
nothing calls this directly
no test coverage detected