Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvements to the assertion failed error message #36392

Closed
antoyo opened this issue Sep 10, 2016 · 4 comments
Closed

Improvements to the assertion failed error message #36392

antoyo opened this issue Sep 10, 2016 · 4 comments
Labels
T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.

Comments

@antoyo
Copy link
Contributor

antoyo commented Sep 10, 2016

Hello.
It would be nice to show the differences between the left and right value more visually, with a diff-like format and/or with colors.
For instance, with the following code:

assert_eq!("my very very very very very very very very long sentence",
    "my very very very very very very very very long snetence");

we get:

thread 'test' panicked at 'assertion failed: `(left == right)` (left: `"my very very very very very very very very long sentence"`, right: `"my very very very very very very very very long snetence"`), tests/lib.rs:10

It is not easy to spot immediately the difference between the expected and the actual values.
Showing this with colors would greatly reduce the amount of time needed to spot the difference.
Thanks.

@Mark-Simulacrum
Copy link
Member

For the time being, you can use something like the manual implementation of what you want here. The diff crate also has some examples that do more advanced things.

@bluss
Copy link
Member

bluss commented Sep 11, 2016

@antoyo Useful assert macro improvements can be prototyped in a separate crate first, might be the best way.

@Boddlnagg
Copy link
Contributor

Boddlnagg commented Sep 11, 2016

Something like that already exists (though without string diffs, I think): https://github.com/gifnksm/power-assert-rs (also see https://crates.io/search?q=assert)

@steveklabnik steveklabnik added T-libs-api Relevant to the library API team, which will review and decide on the PR/issue. and removed A-libs labels Mar 24, 2017
@Mark-Simulacrum
Copy link
Member

Closing in favor of the tracking issue for this feature, #41615.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

6 participants