summaryrefslogtreecommitdiff
path: root/cinder/tests/unit/test_ssh_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'cinder/tests/unit/test_ssh_utils.py')
-rw-r--r--cinder/tests/unit/test_ssh_utils.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/cinder/tests/unit/test_ssh_utils.py b/cinder/tests/unit/test_ssh_utils.py
index 3d4dd6225..67091179f 100644
--- a/cinder/tests/unit/test_ssh_utils.py
+++ b/cinder/tests/unit/test_ssh_utils.py
@@ -405,3 +405,11 @@ class SSHPoolTestCase(test.TestCase):
sshpool = None
self.assertEqual(fake_close.mock_calls, close_expect_calls +
close_expect_calls)
+
+ @mock.patch('cinder.ssh_utils.paramiko', new=None)
+ def test_missing_paramiko(self):
+ self.assertRaises(exception.RequirementMissing,
+ ssh_utils.SSHPool,
+ '192.0.2.1', 22, 10,
+ 'test',
+ password='hello')