(t *testing.T)
| 232 | } |
| 233 | |
| 234 | func TestParseYAML(t *testing.T) { |
| 235 | dict, err := ParseYAML([]byte(sampleYAML)) |
| 236 | assert.NilError(t, err) |
| 237 | assert.Check(t, is.DeepEqual(sampleDict, dict)) |
| 238 | } |
| 239 | |
| 240 | func TestLoad(t *testing.T) { |
| 241 | actual, err := Load(buildConfigDetails(sampleDict, nil)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…