(t *testing.T)
| 25 | const testfile = "testdata/chartfiletest.yaml" |
| 26 | |
| 27 | func TestLoadChartfile(t *testing.T) { |
| 28 | f, err := LoadChartfile(testfile) |
| 29 | if err != nil { |
| 30 | t.Errorf("Failed to open %s: %s", testfile, err) |
| 31 | return |
| 32 | } |
| 33 | verifyChartfile(t, f, "frobnitz") |
| 34 | } |
| 35 | |
| 36 | func verifyChartfile(t *testing.T, f *chart.Metadata, name string) { |
| 37 | t.Helper() |
nothing calls this directly
no test coverage detected
searching dependent graphs…