Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
src
/
tools
/
remote-test-client
/
tests
/
lib.rs
blob: 663afbfb6c7dd67cf2be1ccae13d55481e08bb52 [
file
] [
log
] [
blame
]
#[
test
]
fn
test_help
()
{
let
mut
cmd
=
assert_cmd
::
cargo
::
cargo_bin_cmd
!();
cmd
.
arg
(
"help"
);
let
output
=
cmd
.
unwrap
();
let
stdout
=
String
::
from_utf8
(
output
.
stdout
.
clone
()).
unwrap
();
assert
!(
stdout
.
trim
().
starts_with
(
"Usage:"
));
}