1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Various assertion helpers.

use crate::Error;
use std::fmt::Debug;

/// A helper like `assert_eq!` that instead returns `Err(Error::Assertion)` on failure.
pub fn assert_equal<T>(left: T, right: T, msg: &str) -> Result<(), Error>
where
    T: PartialEq + Debug,
{
    if left == right {
        Ok(())
    } else {
        Err(Error::Assertion(format!("{msg}\n  left `{left:?}`,\n right `{right:?}`")))
    }
}