Crates.io | pretty_assertions |
lib.rs | pretty_assertions |
version | 1.4.1 |
source | src |
created_at | 2017-03-26 23:33:43.680768 |
updated_at | 2024-09-15 13:11:03.148906 |
description | Overwrite `assert_eq!` and `assert_ne!` with drop-in replacements, adding colorful diffs. |
homepage | |
repository | https://github.com/rust-pretty-assertions/rust-pretty-assertions |
max_upload_size | |
id | 9165 |
size | 126,190 |
Overwrite assert_eq!
with a drop-in replacement, adding a colorful diff.
When writing tests in Rust, you'll probably use assert_eq!(a, b)
a lot.
If such a test fails, it will present all the details of a
and b
.
But you have to spot the differences yourself, which is not always straightforward,
like here:
Wouldn't that task be much easier with a colorful diff?
Yep — and you only need one line of code to make it happen:
use pretty_assertions::{assert_eq, assert_ne};
// 1. add the `pretty_assertions` dependency to `Cargo.toml`.
// 2. insert this line at the top of each module, as needed
use pretty_assertions::{assert_eq, assert_ne};
fn main() {
#[derive(Debug, PartialEq)]
struct Foo {
lorem: &'static str,
ipsum: u32,
dolor: Result<String, String>,
}
let x = Some(Foo { lorem: "Hello World!", ipsum: 42, dolor: Ok("hey".to_string())});
let y = Some(Foo { lorem: "Hello Wrold!", ipsum: 42, dolor: Ok("hey ho!".to_string())});
assert_eq!(x, y);
}
The exact output of assertions is not guaranteed to be consistent over time, and may change between minor versions. The output of this crate is designed to be read by a human. It is not suitable for exact comparison, for example in snapshot testing.
This crate adheres to semantic versioning for publically exported crate items, except the private
module, which may change between any version.
Specify it as [dev-dependencies]
and it will only be used for compiling tests, examples, and benchmarks.
This way the compile time of cargo build
won't be affected!
Also add #[cfg(test)]
to your use
statements, like this:
#[cfg(test)]
use pretty_assertions::{assert_eq, assert_ne};
Rust 2018
edition, you need to declare
use pretty_assertions::{assert_eq, assert_ne};
per module.
Before you would write #[macro_use] extern crate pretty_assertions;
.assert_ne
is also switched to multi-line presentation, but does not show
a diff.no_std
supportFor no_std
support, disable the std
feature and enable the alloc
feature:
# Cargo.toml
pretty_assertions = { version= "...", default-features = false, features = ["alloc"] }
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.