(t *testing.T)
| 83 | } |
| 84 | |
| 85 | func TestProxyTransport_NilWhenNoDockerDesktop(t *testing.T) { |
| 86 | assert.Assert(t, ProxyTransport("") == nil, |
| 87 | "must return nil so callers fall back to their own (e.g. containerd's) default transport") |
| 88 | } |
| 89 | |
| 90 | func TestProxyTransport_NilWhenSocketMissing(t *testing.T) { |
| 91 | // no httpproxy.sock created |
nothing calls this directly
no test coverage detected