(t *testing.T)
| 28 | } |
| 29 | |
| 30 | func TestClientCapabilities(t *testing.T) { |
| 31 | t.Parallel() |
| 32 | |
| 33 | if caps := NewClient("").Capabilities(); caps != (registry.SourceCaps{Search: false}) { |
| 34 | t.Fatalf("Capabilities() = %#v, want search disabled", caps) |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | func TestClientInfoFetchesLatestAndVersions(t *testing.T) { |
| 39 | t.Parallel() |
nothing calls this directly
no test coverage detected