diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2017-07-12 15:12:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-07-12 15:12:22 +0000 |
commit | 0323218afb7500bac979e46aafc9c33d614c99d5 (patch) | |
tree | 48cecb3992b98dabcc30e1a27c97dd8de69a9082 /functest/tests/unit/cli/commands | |
parent | f81e3d2cf3cf9b54f940a6e0ae0ea68db0e1f589 (diff) | |
parent | 3bb72f47f704f25d957d8f00b82360fe8b6b2f7a (diff) |
Merge "Switch to check_deployment instead of check_os.sh"
Diffstat (limited to 'functest/tests/unit/cli/commands')
-rw-r--r-- | functest/tests/unit/cli/commands/test_cli_os.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/functest/tests/unit/cli/commands/test_cli_os.py b/functest/tests/unit/cli/commands/test_cli_os.py index a3d930de..806bc931 100644 --- a/functest/tests/unit/cli/commands/test_cli_os.py +++ b/functest/tests/unit/cli/commands/test_cli_os.py @@ -59,12 +59,12 @@ class CliOpenStackTesting(unittest.TestCase): self.endpoint_ip) mock_exit.assert_called_once_with(0) - @mock.patch('functest.cli.commands.cli_os.ft_utils.execute_command') - def test_check(self, mock_ftutils_execute): - with mock.patch.object(self.cli_os, 'ping_endpoint'): + def test_check(self): + with mock.patch.object(self.cli_os, 'ping_endpoint'), \ + mock.patch('functest.cli.commands.cli_os.check_deployment.' + 'CheckDeployment') as mock_check_deployment: self.cli_os.check() - mock_ftutils_execute.assert_called_once_with( - "check_os.sh", verbose=False) + self.assertTrue(mock_check_deployment.called) @mock.patch('functest.cli.commands.cli_os.os.path.isfile', return_value=False) |