(self, git_repo)
| 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: |
| 139 | f.write("added line\n") |
| 140 | result = get_session_diff(git_repo) |
| 141 | assert result.diff_text != "" |
| 142 | |
| 143 | |
| 144 | class TestCreateBranch: |
nothing calls this directly
no test coverage detected