(t *testing.T)
| 340 | } |
| 341 | |
| 342 | func TestConvertDNSConfigSearch(t *testing.T) { |
| 343 | dnsConfig := convertDNSConfig(nil, search) |
| 344 | assert.Check(t, is.DeepEqual(&swarm.DNSConfig{ |
| 345 | Nameservers: nil, |
| 346 | Search: search, |
| 347 | }, dnsConfig, cmpopts.EquateComparable(netip.Addr{}))) |
| 348 | } |
| 349 | |
| 350 | func TestConvertCredentialSpec(t *testing.T) { |
| 351 | tests := []struct { |
nothing calls this directly
no test coverage detected
searching dependent graphs…