()
| 132 | } |
| 133 | |
| 134 | func createCAValidTestConfig() *clientcmdapi.Config { |
| 135 | |
| 136 | config := createValidTestConfig() |
| 137 | config.Clusters["clean"].CertificateAuthorityData = []byte{0, 0} |
| 138 | return config |
| 139 | } |
| 140 | |
| 141 | func TestInsecureOverridesCA(t *testing.T) { |
| 142 | config := createCAValidTestConfig() |
no test coverage detected