(t *testing.T)
| 340 | } |
| 341 | |
| 342 | func TestMatchAgentProfile_Cursor(t *testing.T) { |
| 343 | p := MatchAgentProfile("cursor/0.44.0 (macOS 14.0; aarch64)") |
| 344 | if p.Name != "cursor" { |
| 345 | t.Errorf("expected cursor, got %s", p.Name) |
| 346 | } |
| 347 | } |
| 348 | |
| 349 | func TestMatchAgentProfile_Windsurf(t *testing.T) { |
| 350 | p := MatchAgentProfile("windsurf/1.2.0 (Linux)") |
nothing calls this directly
no test coverage detected