summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoralisdair sullivan <alisdairsullivan@yahoo.ca>2015-08-16 09:35:43 -0700
committeralisdair sullivan <alisdairsullivan@yahoo.ca>2015-08-16 09:35:43 -0700
commit2ac834367be676441161d430c6c3b2f2fc40a2da (patch)
treef92fa228e4b9c0d074d3a9087ec119f0c85773a7 /src
parentd6a011981ebc82ce9fad3eeb7ca40372a53ea142 (diff)
improve `--help' documentation for eunit provider
Diffstat (limited to 'src')
-rw-r--r--src/rebar_prv_eunit.erl10
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.".