#[test]
fn _0001() {
cli_assert::command!().arg("run").success().code(0).stdout("taskcmd\n").stderr("").execute();
}
#[test]
fn _0002() {
cli_assert::command!()
.arg("invalid-dir")
.failure()
.code(1)
.stdout("")
.stderr("error: failed to spawn command, reason: No such file or directory (os error 2)\n")
.execute();
}