(t *testing.T)
| 480 | } |
| 481 | |
| 482 | func TestBindingYAML(t *testing.T) { |
| 483 | testBodyBinding(t, |
| 484 | YAML, "yaml", |
| 485 | "/", "/", |
| 486 | `foo: bar`, `bar: foo`) |
| 487 | } |
| 488 | |
| 489 | func TestBindingYAMLStringMap(t *testing.T) { |
| 490 | // YAML is a superset of JSON, so the test below is JSON (to avoid newlines) |
nothing calls this directly
no test coverage detected