(self)
| 166 | |
| 167 | class TestCommitAttribution: |
| 168 | def test_fields(self): |
| 169 | ca = CommitAttribution( |
| 170 | path="file.txt", |
| 171 | modified_by_claude=True, |
| 172 | lines_added=10, |
| 173 | lines_removed=3, |
| 174 | ) |
| 175 | assert ca.modified_by_claude is True |
| 176 | assert ca.modified_by_user is False |
nothing calls this directly
no test coverage detected