git-delta 0.19.2

A syntax-highlighting pager for git
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);
}