(t *testing.T)
| 26 | ) |
| 27 | |
| 28 | func TestConfig(t *testing.T) { |
| 29 | c := Config{} |
| 30 | if c.roundTripper() != DefaultRoundTripper { |
| 31 | t.Fatalf("expected default roundtripper for nil RoundTripper field") |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | func TestClientURL(t *testing.T) { |
| 36 | tests := []struct { |
nothing calls this directly
no test coverage detected