(self, git_repo)
| 130 | |
| 131 | class TestGetSessionDiff: |
| 132 | def test_no_changes(self, git_repo): |
| 133 | result = get_session_diff(git_repo) |
| 134 | assert isinstance(result, DiffResult) |
| 135 | assert result.diff_text == "" |
| 136 | |
| 137 | def test_with_changes(self, git_repo): |
| 138 | with open(os.path.join(git_repo, "README.md"), "a") as f: |
nothing calls this directly
no test coverage detected