summaryrefslogtreecommitdiffhomepage
path: root/tests/test_client.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-09-05 16:08:05 -0700
committerJeff Forcier <jeff@bitprophet.org>2014-09-05 16:08:05 -0700
commitf7f3b4560f8a6a44d3738db798cba977bb5daf4f (patch)
tree3b53da88bd8edeb6cdd533f1c699aa4330fd210d /tests/test_client.py
parent6c8a5eb8fbf023194634f3077479a70ac9f024a2 (diff)
Add an explicit RSA test, which fails (!)
Diffstat (limited to 'tests/test_client.py')
-rw-r--r--tests/test_client.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test_client.py b/tests/test_client.py
index 0697d289..1791363a 100644
--- a/tests/test_client.py
+++ b/tests/test_client.py
@@ -133,6 +133,12 @@ class SSHClientTest (unittest.TestCase):
"""
self._test_connection(key_filename=test_path('test_dss.key'))
+ def test_client_rsa(self):
+ """
+ verify that SSHClient works with an RSA key.
+ """
+ self._test_connection(key_filename=test_path('test_rsa.key'))
+
def test_2_5_client_ecdsa(self):
"""
verify that SSHClient works with an ECDSA key.