diff options
author | Tristan Sloughter <tristan.sloughter@gmail.com> | 2015-09-29 17:53:05 -0500 |
---|---|---|
committer | Tristan Sloughter <tristan.sloughter@gmail.com> | 2015-09-29 17:53:05 -0500 |
commit | 8495964a0a1ba639e1bbd3355560b01cf02255b0 (patch) | |
tree | a1afd690f3a48644ce34982b02dd9cc59f711eeb /priv/shell-completion/zsh | |
parent | fe161128c4dff2d1200e41be8143dec1d8dc63d1 (diff) | |
parent | 2b799ba1c7fedc5e4edc2266e4b7f77311ea0979 (diff) |
Merge pull request #805 from talentdeficit/eunit_test_specs
eunit test provider
Diffstat (limited to 'priv/shell-completion/zsh')
-rw-r--r-- | priv/shell-completion/zsh/_rebar3 | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/priv/shell-completion/zsh/_rebar3 b/priv/shell-completion/zsh/_rebar3 index c04791b..d4e1c35 100644 --- a/priv/shell-completion/zsh/_rebar3 +++ b/priv/shell-completion/zsh/_rebar3 @@ -92,9 +92,14 @@ _rebar3 () { ;; (eunit) _arguments \ - '(--app)--app[List of application test suites to run]:suites' \ - '(--suite)--suite[List of test suites to run]:suites' \ + '(--app)--app[Comma separated list of application test suites to run]:suites' \ + '(--application)--application[Comma separated list of application test suites to run]:applications' \ '(-c --cover)'{-c,--cover}'[Generate cover data]' \ + '(--dir)--dir[Comma separated list of dirs to load tests from]:dirs' \ + '(-e --error_on_warning)'{-e,--error_on_warning}'[Error on invalid test specifications instead of warning]' \ + '(--file)--file[Comma separated list of files to load tests from]:files' \ + '(--module)--module[Comma separated list of modules to load tests from]:modules' \ + '(--suite)--suite[Comma separated list of modules to load tests from]:modules' \ '(-v --verbose)'{-v,--verbose}'[Verbose output]' \ && ret=0 ;; |