Open
Description
In trying to set up trycmd I had this md file:
```trycmd
$ cargo mutants --help
```
This gives a result of ignored
.
With --nocapture
I could find out:
running 1 test
[ trycmd::runner] Substitutions { vars: {"[CWD]": "/home/mbp/src/mutants"}, unused: {"[EXE]"} }
[ trycmd::runner] bin="cargo" not found
[ trycmd::runner] Case: Ok(
Output {
path: "trycmd/hello.trycmd",
id: Some(
"4",
),
spawn: Spawn {
exit: None,
status: Skipped,
},
stdout: None,
stderr: None,
fs: Filesystem {
context: [],
},
},
)
Testing trycmd/hello.trycmd:4 ... ignored
test trycmd_tests ... ok
It seems to me that "file not found" should probably be a test failure (by default?) not ignored?