macro_rules! assert_json_eq {
($lhs:expr, $rhs:expr $(,)?) => { ... };
}
Expand description
Compare two JSON values for an exact match.
If you want an inclusive match use assert_json_include
instead.
See crate documentation for examples.
macro_rules! assert_json_eq {
($lhs:expr, $rhs:expr $(,)?) => { ... };
}
Compare two JSON values for an exact match.
If you want an inclusive match use assert_json_include
instead.
See crate documentation for examples.