Open
Description
Would be nice to have a new method dump()
:
assert_cmd::Command::cargo_bin("foo")
.unwrap()
.current_dir(tmp.path())
.arg("--verbose")
.arg("bar")
.assert()
.dump() // here!
.success();
It should print the entire stdout
and stderr
to console. This would be very convenient for debugging purposes.