diff options
-rw-r--r-- | src/rebar_prv_eunit.erl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/rebar_prv_eunit.erl b/src/rebar_prv_eunit.erl index 6cf29bb..5d0f65f 100644 --- a/src/rebar_prv_eunit.erl +++ b/src/rebar_prv_eunit.erl @@ -269,8 +269,8 @@ eunit_opts(_State) -> {suite, undefined, "suite", string, help(suite)}, {verbose, $v, "verbose", boolean, help(verbose)}]. -help(app) -> "Comma seperated list of application test suites to run"; -help(cover) -> "Generate cover data"; -help(file) -> "Comma seperated list of modules to run"; -help(suite) -> "Comma seperated list of test suites to run"; -help(verbose) -> "Verbose output". +help(app) -> "Comma seperated list of application test suites to run. Equivalent to `[{application, App}]`."; +help(cover) -> "Generate cover data. Defaults to false."; +help(file) -> "Comma seperated list of files to run. Equivalent to `[{file, File}]`."; +help(suite) -> "Comma seperated list of test suites to run. Equivalent to `[{module, Suite}]`."; +help(verbose) -> "Verbose output. Defaults to false.". |