diff options
author | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2016-10-11 02:32:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-10-11 02:32:03 +0000 |
commit | 6d1312d00a3149420db905c6bdfe2756abc55695 (patch) | |
tree | a21edfc62f6d56d4bd722494edb592045f9ec287 /tests/cli_test.py | |
parent | 49a6694e6c286a12fcdc3b130315b92c1445e05b (diff) | |
parent | 8c93dffbb4bf51e60096cab465dbd2a5f62feb34 (diff) |
Merge "Rename class cli to Cli"
Diffstat (limited to 'tests/cli_test.py')
-rw-r--r-- | tests/cli_test.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/cli_test.py b/tests/cli_test.py index fe05327d..12d0abb0 100644 --- a/tests/cli_test.py +++ b/tests/cli_test.py @@ -1,7 +1,7 @@ import pytest import mock import os -from func.cli import cli +from func.cli import Cli class TestClass: @@ -19,7 +19,7 @@ class TestClass: k = mock.patch.dict(os.environ, {'INSTALLER_TYPE': 'fuel', 'PWD': '/home'}) with pytest.raises(SystemExit): k.start() - cli(test_input) + Cli(test_input) k.stop() resout, reserr = capfd.readouterr() assert expected in resout @@ -35,7 +35,7 @@ class TestClass: def test_cli_successful(self, mock_args_handler, test_input, expected): k = mock.patch.dict(os.environ, {'INSTALLER_TYPE': 'fuel', 'PWD': '/home'}) k.start() - cli(test_input) + Cli(test_input) k.stop() call_list = map(lambda x: mock_args_handler.call_args_list[x][0], range(len(expected))) assert sorted(call_list) == sorted(expected) |