diff options
author | zhihui wu <wu.zhihui1@zte.com.cn> | 2017-06-06 06:17:52 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-06-06 06:17:52 +0000 |
commit | 0dffb7f523b9681533517b61436e9010d67def47 (patch) | |
tree | 708172056280bfc096476268e05654c0fc8a6e8e /tests/unit | |
parent | 0ce21bc2fc83faa3462de9fd52360cb0d6fae71d (diff) | |
parent | 30f07d0e8e2d82e613155e218d92f126ad1316bf (diff) |
Merge "Refactor Cli"
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/cli/options_test.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/unit/cli/options_test.py b/tests/unit/cli/options_test.py index d7c0f700..6aef139c 100644 --- a/tests/unit/cli/options_test.py +++ b/tests/unit/cli/options_test.py @@ -21,10 +21,6 @@ class TestClass(object): def runner(self): return CliRunner() - def test_verbose(self, runner): - result = runner.invoke(cli, ['-v']) - assert result.output == '' - def test_version(self, runner): result = runner.invoke(cli, ['--version']) assert re.search(r'\d+\.\d+\.\d+', result.output) |