should
is a postfix assertion library for Rust, heavily inspired by Shouldly. It aims to make writing assertions feel more natural, while also providing clear error messages.
It does this by implementing assertion traits generically, while also utilizing stack traces to reconstruct the original expression:
```rust fn multiply(x: i32, y: i32) -> i32 { x + y }
fn testmultiply() { multiply(3, 5).shouldbe(15); } ```
panicked at 'multiply(3, 5) should be 15 but was 8'
Implemented for T: PartialEq
as well as Ok(T)
and Some(T)
- should_be
- should_not_be
Implemented for T: PartialOrd
as well as Ok(T)
and Some(T)
- should_be_lt
- should_be_le
- should_be_gt
- should_be_ge
Implemented for Option<T>
- should_be_some
- should_be_none
Implemented for Result<T, E>
- should_be_ok
- should_be_err
All asserted types are required to have implemented Debug
.