git-delta-lib 0.0.1

Not ready for use: use crate git-delta for the application
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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]
fn am_testing() {
    assert!(TESTING);
}