(t *testing.T)
| 121 | } |
| 122 | |
| 123 | func TestEmpty(t *testing.T) { |
| 124 | spec, err := os.ReadFile("testdata/empty.yaml") |
| 125 | require.NoError(t, err) |
| 126 | |
| 127 | require.Equal(t, |
| 128 | []string{}, |
| 129 | foundObjects(Parse(spec, "default", false)), |
| 130 | ) |
| 131 | } |
| 132 | |
| 133 | func TestBaseNameAnnotation(t *testing.T) { |
| 134 | spec, err := os.ReadFile("testdata/secret_immutable.yaml") |
nothing calls this directly
no test coverage detected