pretty_assertions_sorted 1.2.3

Wrapper around the `rust-pretty-assertions` crate that allows for the ability to sort the Debug output.
Documentation
1
2
3
4
5
6
7
8
#[allow(clippy::eq_op)]
mod assert_eq {
    #[test]
    fn passes() {
        let a = "some value";
        ::pretty_assertions_sorted::assert_eq_sorted!(a, a);
    }
}