lets_expect 0.5.2

Clean tests for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(test)]
mod tests {
    use lets_expect::lets_expect;

    lets_expect! {
        expect(panic!("I panicked!")) {
            to panic
        }

        expect(true) {
            to not_panic
        }
    }
}