(t *testing.T)
| 185 | } |
| 186 | |
| 187 | func TestGetCommitTreeFiles_InvalidPath(t *testing.T) { |
| 188 | _, err := GetCommitTreeFiles("/nonexistent/path", "HEAD") |
| 189 | |
| 190 | assert.Error(t, err) |
| 191 | assert.Contains(t, err.Error(), "does not exist") |
| 192 | } |
nothing calls this directly
no test coverage detected