Overwrite assert_eq! with drop-in replacements adding colorful diffs
  • Rust 97.2%
  • Shell 2.8%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-04-13 10:56:18 +02:00
.github/workflows chore: upgrade github ci actions 2024-12-11 19:56:56 +00:00
pretty_assertions chore: sync dependencies (monorepo) 2026-04-13 10:56:18 +02:00
pretty_assertions_bench chore: sync dependencies (monorepo) 2026-04-13 10:56:18 +02:00
scripts build: Increase portability of shell scripts 2025-05-26 21:32:43 +01:00
.gitignore Revert "ci: remove concern with CARGO_TARGET_DIR" 2021-03-09 00:01:30 +00:00
.travis.yml ci: make travis fail on audit failure 2021-02-09 21:53:26 +00:00
Cargo.toml chore: inline benchmarks from tommilligan/rust-pretty-assertions-bench 2021-05-01 13:32:48 +01:00
CHANGELOG.md chore: prep 1.4.1 release 2024-09-15 14:06:35 +01:00
LICENSE-APACHE first version 2017-03-27 01:14:06 +02:00
LICENSE-MIT first version 2017-03-27 01:14:06 +02:00
qvet.yml ci: add qvet config 2023-04-16 13:03:43 +01:00
README.md docs: replace std::assert_matches with std::assert_matches::assert_matches in the example clippy config 2025-09-26 22:37:40 +01:00

Pretty Assertions

Latest version docs.rs Downloads of latest version All downloads

Overwrite assert_eq! with a drop-in replacement, adding a colorful diff.

Usage

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:

standard assertion

Wouldn't that task be much easier with a colorful diff?

pretty assertion

Yep — and you only need one line of code to make it happen:

use pretty_assertions::{assert_eq, assert_ne};
Show the example behind the screenshots above.
// 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);
}

Semantic Versioning

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.

Tip

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};

If you want to enforce usage of pretty_assertions macros over std, add the following to clippy.toml:

disallowed-macros = [
  { path = "std::assert_ne", reason = "use `pretty_assertions::assert_ne` instead" },
  { path = "std::assert_eq", reason = "use `pretty_assertions::assert_eq` instead" },
  { path = "std::assert_matches::assert_matches", reason = "use `pretty_assertions::assert_matches` instead" },
]

Notes

  • Since 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;.
  • The replacement is only effective in your own crate, not in other libraries you include.
  • assert_ne is also switched to multi-line presentation, but does not show a diff.
  • Under Windows, the terminal state is modified to properly handle VT100 escape sequences, which may break display for certain use cases.
  • The minimum supported rust version (MSRV) is 1.35.0

no_std support

For no_std support, disable the std feature and enable the alloc feature:

# Cargo.toml
pretty_assertions = { version= "...", default-features = false, features = ["alloc"] }

License

Licensed under either of

at your option.

Contribution

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.

Development

  • Cut a new release by creating a GitHub release with tag. Crate will be built and uploaded to crates.io by GHA.