From 30f07d0e8e2d82e613155e218d92f126ad1316bf Mon Sep 17 00:00:00 2001
From: Taseer <taseer94@gmail.com>
Date: Fri, 2 Jun 2017 14:23:55 +0500
Subject: Refactor Cli

- Remove reduntant contexts
- Remove verbose option
- Use builtin help and version options

Change-Id: Ifb66009b5f9ab95428ce87c90f739b5221ccdd6f
Signed-off-by: Taseer Ahmed <taseer94@gmail.com>
---
 tests/unit/cli/options_test.py | 4 ----
 1 file changed, 4 deletions(-)

(limited to 'tests/unit')

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)
-- 
cgit