diff options
author | Taseer Ahmed <taseer94@gmail.com> | 2017-01-22 12:04:46 +0500 |
---|---|---|
committer | Taseer Ahmed <taseer94@gmail.com> | 2017-01-22 12:16:13 +0500 |
commit | 3424659963f472ecfbf1e3c9e08945de4b34e36c (patch) | |
tree | bc9193f20213e5df9eea52735ac93610d32746b4 /tests/unit/cli/test_plan.py | |
parent | e835a660789c2f152750308fa1eeb1b5e970a257 (diff) |
Plan module draft
JIRA: QTIP-205
JIRA: QTIP-188
Change-Id: Ia871191851d25e1986834f8a7efdbeb8a8d87ec3
Signed-off-by: Taseer Ahmed <taseer94@gmail.com>
Diffstat (limited to 'tests/unit/cli/test_plan.py')
-rw-r--r-- | tests/unit/cli/test_plan.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/unit/cli/test_plan.py b/tests/unit/cli/test_plan.py new file mode 100644 index 00000000..3ce3766e --- /dev/null +++ b/tests/unit/cli/test_plan.py @@ -0,0 +1,31 @@ +############################################################### +# Copyright (c) 2016 ZTE Corp and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + +import pytest +from click.testing import CliRunner + +from qtip.cli.entry import cli + + +@pytest.fixture() +def runner(): + return CliRunner() + + +def test_list(runner): + result = runner.invoke(cli, ['plan', 'list']) + assert result.output == '' + + +def test_run(runner): + result = runner.invoke(cli, ['plan', 'run', 'fake-plan']) + assert result.output == '' + + result = runner.invoke(cli, ['plan', 'run']) + assert 'Missing argument "name".' in result.output |