(t *testing.T)
| 150 | } |
| 151 | |
| 152 | func TestValidateAllowsXTopLevelFields(t *testing.T) { |
| 153 | config := dict{ |
| 154 | "version": "3.4", |
| 155 | "x-extra-stuff": dict{}, |
| 156 | } |
| 157 | |
| 158 | err := Validate(config, "3.4") |
| 159 | assert.NilError(t, err) |
| 160 | } |
| 161 | |
| 162 | func TestValidateAllowsXFields(t *testing.T) { |
| 163 | config := dict{ |
nothing calls this directly
no test coverage detected
searching dependent graphs…