summaryrefslogtreecommitdiff
path: root/src/tests/mod.rs
blob: b6633a3b23c1e019cb162e7f7f5570018dddb8ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod ansi_test_utils;
pub mod integration_test_utils;
pub mod test_example_diffs;
pub mod test_utils;

#[cfg(not(test))]
pub const TESTING: bool = false;

#[cfg(test)]
pub const TESTING: bool = true;

#[test]
#[allow(clippy::assertions_on_constants)]
fn am_testing() {
    assert!(TESTING);
}