taskcmd 0.1.3

Task commander
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[test]

fn _0001() {
  cli_assert::command!()
    .arg("run")
    .failure()
    .code(1)
    .stdout("")
    .stderr("error: task definitions file is missing or inaccessible\n")
    .execute();
}