conspire 0.7.2

The Rust interface to conspire.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::{Style, defeat_message_inner};

#[test]
fn defeat_message_inner_covers_all_branches() {
    for n in 0..=14 {
        defeat_message_inner(n);
    }
}

#[test]
fn detect_inner_covers_all_branches() {
    for no_color_unset in [false, true] {
        for is_terminal in [false, true] {
            Style::detect_inner(no_color_unset, is_terminal);
        }
    }
}