diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2018-12-29 17:42:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-29 17:42:13 -0500 |
commit | 69812e803e8f6f0e816651b7fcaf33eb5ff5513e (patch) | |
tree | c0f44192e94d46353e49253cd2fe8753881285b6 /priv/shell-completion/fish/rebar3.fish | |
parent | 968458b43592ee112ea85addc674af3beb476da6 (diff) | |
parent | ecd5e1342a99241e71d809b2172fc1a6f4dd41ba (diff) |
Merge pull request #1984 from mopp/add_eunit_generator_option
Add --generator option for eunit
Diffstat (limited to 'priv/shell-completion/fish/rebar3.fish')
-rw-r--r-- | priv/shell-completion/fish/rebar3.fish | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/priv/shell-completion/fish/rebar3.fish b/priv/shell-completion/fish/rebar3.fish index 9cd2c82..e578b96 100644 --- a/priv/shell-completion/fish/rebar3.fish +++ b/priv/shell-completion/fish/rebar3.fish @@ -136,6 +136,7 @@ complete -f -c 'rebar3' -n '__fish_rebar3_using_command eunut' -s e -l error_on_ complete -f -c 'rebar3' -n '__fish_rebar3_using_command eunit' -s f -l file -d "Comma separated list of files to load tests from. Equivalent to `[{file, File}]`" complete -f -c 'rebar3' -n '__fish_rebar3_using_command eunit' -s m -l module -d "Comma separated list of modules to load tests from. Equivalent to `[{module, Module}]`" complete -f -c 'rebar3' -n '__fish_rebar3_using_command eunit' -s s -l suite -d "Comma separated list of modules to load tests from. Equivalent to `[{module, Module}]`" +complete -f -c 'rebar3' -n '__fish_rebar3_using_command eunit' -s g -l generator -d "Comma separated list of generators (the format is `module:function`) to load tests from. Equivalent to `[{generator, Module, Function}]`" complete -f -c 'rebar3' -n '__fish_rebar3_using_command eunit' -s v -l verbose -d "Verbose output" complete -f -c 'rebar3' -n '__fish_rebar3_using_command eunit' -l suite -d "Lists of test suites to run" |