We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f7ba714 + c8422ce commit d7426e5Copy full SHA for d7426e5
src/bin/cargo/commands/test.rs
@@ -7,7 +7,7 @@ pub fn cli() -> App {
7
// subcommand aliases are handled in aliased_command()
8
// .alias("t")
9
.setting(AppSettings::TrailingVarArg)
10
- .about("Execute all unit and integration tests of a local package")
+ .about("Execute all unit and integration tests and build examples of a local package")
11
.arg(
12
Arg::with_name("TESTNAME")
13
.help("If specified, only run tests containing this string in their names"),
@@ -19,7 +19,7 @@ pub fn cli() -> App {
19
.last(true),
20
)
21
.arg_targets_all(
22
- "Test only this package's library",
+ "Test only this package's library unit tests",
23
"Test only the specified binary",
24
"Test all binaries",
25
"Test only the specified example",
0 commit comments