galvanic-assert icon indicating copy to clipboard operation
galvanic-assert copied to clipboard

A comprehensive set of matcher-based assertions for easier testing of Rust code

Results 4 galvanic-assert issues
Sort by recently updated
recently updated
newest added

I'd like to be able to write something like this: ```rust struct Person { name: &'static str, age: u32, } let people = vec![ Person {name: "Hi", age: 32 },...

I was just curious if the maintainer still viewed this project as active? If so, is there a roadmap for a 1.0 release? Thanks for everything. The crate is very...

No idea if you actually want to make `Debug` a requirement here. I use `Debug` on all my types, `std::assert_eq` requires `Debug`, and think it makes the error messages when...

[pretty-assertions](https://crates.io/crates/pretty-assertions) gives some really nice, colourful diffs when printing out assertion failures using the [difference crate](https://crates.io/crates/difference): ![pretty assertion screenshot](https://github.com/colin-kiegel/rust-pretty-assertions/raw/master/examples/pretty_assertion.png) I'm wondering how hard it would be to add these to...

enhancement