YAMLEqf asserts that two YAML strings are equivalent.
(expected string, actual string, msg string, args ...interface{})
| 1650 | |
| 1651 | // YAMLEqf asserts that two YAML strings are equivalent. |
| 1652 | func (a *Assertions) YAMLEqf(expected string, actual string, msg string, args ...interface{}) bool { |
| 1653 | if h, ok := a.t.(tHelper); ok { |
| 1654 | h.Helper() |
| 1655 | } |
| 1656 | return YAMLEqf(a.t, expected, actual, msg, args...) |
| 1657 | } |
| 1658 | |
| 1659 | // Zero asserts that i is the zero value for its type. |
| 1660 | func (a *Assertions) Zero(i interface{}, msgAndArgs ...interface{}) bool { |