1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! This is essentially a set of more fully-featured assert macros along the lines
//! of `assert_eq!`, `assert_ne!`, etc. It provides better output than just
//! performing a comparison in the `assert!(...)` body, in that it includes the
//! values of the arguments on output. Unlike `assert_eq!`/`assert_ne!`, it also
//! will output the expression strings that produced the value.
// Need to access these from inside macros.
pub use almost;
// These are separate modules for easier copy/paste...
// TODO: can we remove duplication without making the docs worse?