rustspec_assertions 0.1.9

BDD style assertion library
1
2
3
4
5
6
7
pub trait Matcher <T> {
    fn assert_check(&self, expected: T) -> bool;
    fn msg(&self, expected: T) -> String;
    fn negated_msg(&self, expected: T) -> String;
    fn get_file_line(&self) -> (&'static str, u32);
}