diff options
author | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2017-03-16 15:57:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-16 15:57:03 +0000 |
commit | 9a2c5b0de21a9541d4ad2728e9c64e8d97d66dd6 (patch) | |
tree | 88422a52318c372d648220b46ab92fbd13414a8c /tests/unit/cli/cmd_plan_test.py | |
parent | b40b4b80ce06a1e2c96563e177df0e513c2187eb (diff) | |
parent | bb5af4b9be1325b61c7f80e71c7d50892ae22956 (diff) |
Merge "Implement 'show' command."
Diffstat (limited to 'tests/unit/cli/cmd_plan_test.py')
-rw-r--r-- | tests/unit/cli/cmd_plan_test.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/cli/cmd_plan_test.py b/tests/unit/cli/cmd_plan_test.py index 7c3335fc..30025ae0 100644 --- a/tests/unit/cli/cmd_plan_test.py +++ b/tests/unit/cli/cmd_plan_test.py @@ -32,8 +32,9 @@ def test_run(runner): def test_show(runner): - result = runner.invoke(cli, ['plan', 'show', 'fake-plan']) - assert result.output == '' + result = runner.invoke(cli, ['plan', 'show', 'compute']) + assert 'Name: compute QPI' in result.output + assert 'Description: compute QPI profile' result = runner.invoke(cli, ['plan', 'show']) assert 'Missing argument "name".' in result.output |