taskcmd 0.1.0

Task commander
1
2
3
4
5
6
7
8
9
10
#[test]
fn _0001() {
  cli_assert::command!()
    .arg("hello")
    .failure()
    .code(1)
    .stdout("")
    .stderr("Error: Unexpected node: colored\n")
    .execute();
}