(t *testing.T)
| 2421 | } |
| 2422 | |
| 2423 | func TestYAMLEq_HashAndArrayNotEquivalent(t *testing.T) { |
| 2424 | mockT := new(testing.T) |
| 2425 | False(t, YAMLEq(mockT, `["foo", {"hello": "world", "nested": "hash"}]`, `{"foo": "bar", {"nested": "hash", "hello": "world"}}`)) |
| 2426 | } |
| 2427 | |
| 2428 | func TestYAMLEq_HashesNotEquivalent(t *testing.T) { |
| 2429 | mockT := new(testing.T) |