(t *testing.T)
| 65 | } |
| 66 | |
| 67 | func TestReadValuesFile(t *testing.T) { |
| 68 | data, err := ReadValuesFile("./testdata/coleridge.yaml") |
| 69 | if err != nil { |
| 70 | t.Fatalf("Error reading YAML file: %s", err) |
| 71 | } |
| 72 | matchValues(t, data) |
| 73 | } |
| 74 | |
| 75 | func ExampleValues() { |
| 76 | doc := ` |
nothing calls this directly
no test coverage detected
searching dependent graphs…