(self)
| 161 | self.assertIn("Initial commit", result) |
| 162 | |
| 163 | def test_clean_tree(self): |
| 164 | ctx = GitContextSnapshot( |
| 165 | available=True, |
| 166 | branch="main", |
| 167 | ) |
| 168 | result = format_git_status(ctx) |
| 169 | self.assertIn("Working tree clean", result) |
| 170 | |
| 171 | def test_truncated_status(self): |
| 172 | ctx = GitContextSnapshot( |
nothing calls this directly
no test coverage detected