termcolor_output 1.0.0

Interface crate for styled output to termcolor through macro.
Documentation
1
2
3
4
5
6
7
8
9
use batch_run::Batch;

#[test]
fn test() {
    let t = Batch::new();
    t.compile_fail("tests/fails/*.rs");
    t.run_match("tests/passes/*.rs");
    t.run().unwrap().assert_all_ok();
}