Packaging the chart on a Windows machine will produce an archive that has \\ as delimiters. Test that we support these archives
(t *testing.T)
| 396 | // Packaging the chart on a Windows machine will produce an |
| 397 | // archive that has \\ as delimiters. Test that we support these archives |
| 398 | func TestLoadFileBackslash(t *testing.T) { |
| 399 | c, err := Load("testdata/frobnitz_backslash-1.2.3.tgz") |
| 400 | if err != nil { |
| 401 | t.Fatalf("Failed to load testdata: %s", err) |
| 402 | } |
| 403 | verifyChartFileAndTemplate(t, c, "frobnitz_backslash") |
| 404 | verifyChart(t, c) |
| 405 | verifyDependencies(t, c) |
| 406 | } |
| 407 | |
| 408 | func TestLoadV2WithReqs(t *testing.T) { |
| 409 | l, err := Loader("testdata/frobnitz.v2.reqs") |
nothing calls this directly
no test coverage detected
searching dependent graphs…