(t *testing.T)
| 89 | } |
| 90 | |
| 91 | func TestPluginFiles_ReadFile_DataOverlay(t *testing.T) { |
| 92 | p := newTestPlugin(t) |
| 93 | |
| 94 | b, err := p.files.ReadFile("data-overlays/config.yaml") |
| 95 | require.NoError(t, err) |
| 96 | assert.Contains(t, string(b), "somekey") |
| 97 | } |
| 98 | |
| 99 | func TestPluginFiles_ReadFile_NotFound(t *testing.T) { |
| 100 | p := newTestPlugin(t) |
nothing calls this directly
no test coverage detected