(t *testing.T)
| 78 | } |
| 79 | |
| 80 | func TestHTTPProxySocketEndpoint_EmptyOrUnknown(t *testing.T) { |
| 81 | assert.Equal(t, httpProxySocketEndpoint(""), "") |
| 82 | assert.Equal(t, httpProxySocketEndpoint("tcp://localhost:1234"), "") |
| 83 | } |
| 84 | |
| 85 | func TestProxyTransport_NilWhenNoDockerDesktop(t *testing.T) { |
| 86 | assert.Assert(t, ProxyTransport("") == nil, |
nothing calls this directly
no test coverage detected