(t *testing.T)
| 333 | } |
| 334 | |
| 335 | func TestMatchAgentProfile_Cline(t *testing.T) { |
| 336 | p := MatchAgentProfile("cline/3.18.1 (vscode)") |
| 337 | if p.Name != "cline" { |
| 338 | t.Errorf("expected cline, got %s", p.Name) |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | func TestMatchAgentProfile_Cursor(t *testing.T) { |
| 343 | p := MatchAgentProfile("cursor/0.44.0 (macOS 14.0; aarch64)") |
nothing calls this directly
no test coverage detected