summaryrefslogtreecommitdiffstats
path: root/tests/unit
diff options
context:
space:
mode:
authorzhihui wu <wu.zhihui1@zte.com.cn>2017-01-25 01:41:58 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-01-25 01:41:58 +0000
commit3047a6f8a2c814eacfd8c1e51c8eb3aeb7245c18 (patch)
treebfef5953a0cb6f02b8fde2c23c72afde51bfbdbd /tests/unit
parentf5c23e82e2f59af3ed59a8ad46c119f141cefe7b (diff)
parent3424659963f472ecfbf1e3c9e08945de4b34e36c (diff)
Merge "Plan module draft"
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/cli/test_plan.py31
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