(t *testing.T)
| 23 | ) |
| 24 | |
| 25 | func TestK8sClientGoModVersion(t *testing.T) { |
| 26 | // Unfortunately, test builds don't include debug info / module info |
| 27 | // So we expect "K8sIOClientGoModVersion" to return error |
| 28 | _, err := K8sIOClientGoModVersion() |
| 29 | require.ErrorContains(t, err, "k8s.io/client-go not found in build info") |
| 30 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…