summaryrefslogtreecommitdiffstats
path: root/tests/unit
diff options
context:
space:
mode:
authorTaseer Ahmed <taseer94@gmail.com>2017-01-23 18:41:58 +0500
committerTaseer Ahmed <taseer94@gmail.com>2017-01-23 19:43:14 +0500
commitc8fa86c68ca83347037a418cd3eee45a6d060b59 (patch)
treebff64e1c1d0fa6a1d51c0d2bb34f683176213aea /tests/unit
parent3a08c5442a70dec7f628b7e9b11a9a9384767918 (diff)
Click's built in support for version option
Change-Id: I62ffde066fe2fcb5be7af9a29686a7d380353670 Signed-off-by: Taseer Ahmed <taseer94@gmail.com>
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/cli/test_options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/cli/test_options.py b/tests/unit/cli/test_options.py
index 5129b5cc..f9472814 100644
--- a/tests/unit/cli/test_options.py
+++ b/tests/unit/cli/test_options.py
@@ -25,7 +25,7 @@ class TestClass(object):
def test_version(self, runner):
result = runner.invoke(cli, ['--version'])
- assert '' in result.output
+ assert 'dev' in result.output
def test_debug(self, runner):
result = runner.invoke(cli, ['-d'])