summaryrefslogtreecommitdiff
path: root/src/rebar_prv_eunit.erl
diff options
context:
space:
mode:
authorFred Hebert <mononcqc@ferd.ca>2016-02-28 18:29:55 -0500
committerFred Hebert <mononcqc@ferd.ca>2016-02-28 18:29:55 -0500
commit4fd77ef17236d2cdeb66ec968fbe6e37532270d3 (patch)
treebda70e27c7940b2714b196ad236a690004c06cd3 /src/rebar_prv_eunit.erl
parenta0b2c743566fcfae543ba758b954ec465db6fcfd (diff)
parentda39732fd3ce2488a81c8eb2e713a0726beef939 (diff)
Merge pull request #1092 from ahf/eunit-short-options
Add short-options to the eunit provider.
Diffstat (limited to 'src/rebar_prv_eunit.erl')
-rw-r--r--src/rebar_prv_eunit.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rebar_prv_eunit.erl b/src/rebar_prv_eunit.erl
index abfab8a..c085ee4 100644
--- a/src/rebar_prv_eunit.erl
+++ b/src/rebar_prv_eunit.erl
@@ -457,10 +457,10 @@ eunit_opts(_State) ->
[{app, undefined, "app", string, help(app)},
{application, undefined, "application", string, help(app)},
{cover, $c, "cover", boolean, help(cover)},
- {dir, undefined, "dir", string, help(dir)},
- {file, undefined, "file", string, help(file)},
- {module, undefined, "module", string, help(module)},
- {suite, undefined, "suite", string, help(module)},
+ {dir, $d, "dir", string, help(dir)},
+ {file, $f, "file", string, help(file)},
+ {module, $m, "module", string, help(module)},
+ {suite, $s, "suite", string, help(module)},
{verbose, $v, "verbose", boolean, help(verbose)}].
help(app) -> "Comma separated list of application test suites to run. Equivalent to `[{application, App}]`.";