(t *testing.T)
| 698 | } |
| 699 | |
| 700 | func TestGetCommitRangeFiles_InvalidPath(t *testing.T) { |
| 701 | _, err := GetCommitRangeFiles("/nonexistent/path", "abc", "def") |
| 702 | |
| 703 | assert.Error(t, err) |
| 704 | assert.Contains(t, err.Error(), "does not exist") |
| 705 | } |
nothing calls this directly
no test coverage detected