ledcat 0.2.0

Control lots of LED's over lots of protocols
#[test]
fn calling_without_args() {
    assert_cli::Assert::main_binary()
        .fails()
        .stderr()
        .contains("USAGE")
        .stdout()
        .is("")
        .unwrap();
}

//#[test]
//fn calling_generic_pipe() {
//    let data = "\x00\x01\x02\x03\x04\x05\x06\x07\x08";
//    assert_cli::Assert::main_binary()
//        .with_args(&["--geometry", "3", "--driver", "none", "generic"])
//        .stdin(data)
//        .stderr()
//        .is("")
//        .stdout()
//        .is(data)
//        .unwrap();
//}