(t *testing.T)
| 29 | ) |
| 30 | |
| 31 | func TestSourceObjectsNoKubeDir(t *testing.T) { |
| 32 | fs := testTempFileSource(t) |
| 33 | defer os.RemoveAll(string(fs)) |
| 34 | |
| 35 | _, err := fs.Objects() |
| 36 | assert.NoError(t, err, "ok") |
| 37 | } |
| 38 | |
| 39 | func TestSourceObjectsEmptyKubeDir(t *testing.T) { |
| 40 | fs := testTempFileSource(t) |
nothing calls this directly
no test coverage detected