The pretty assertion crate is helpful when dealing with large text assertions.
The current assert_that implementation panic on failed assertions so it's not compatible with pretty_assertion out of the box.
Maybe we could tweak assert_that so it uses assert_eq instead of panic so we can add pretty_assertions as a cargo feature.
The pretty assertion crate is helpful when dealing with large text assertions.
The current
assert_thatimplementation panic on failed assertions so it's not compatible with pretty_assertion out of the box.Maybe we could tweak
assert_thatso it usesassert_eqinstead ofpanicso we can addpretty_assertionsas a cargo feature.