| 18 | use assert_cmd::Command; |
| 19 | |
| 20 | pub trait CommandExt { |
| 21 | /// Same as [Command::output] except with hooks to print stdout/stderr in failed tests |
| 22 | fn captured_output(&mut self) -> Output; |
| 23 | } |
| 24 | |
| 25 | impl CommandExt for Command { |
| 26 | fn captured_output(&mut self) -> Output { |
nothing calls this directly
no outgoing calls
no test coverage detected