summaryrefslogtreecommitdiffhomepage
path: root/test.py
diff options
context:
space:
mode:
authorRobey Pointer <robey@lag.net>2006-05-07 17:20:07 -0700
committerRobey Pointer <robey@lag.net>2006-05-07 17:20:07 -0700
commit2a03425e277c5fdfab612ad4055d1dd30d4b9a9e (patch)
tree2a6bde55ea2f9e626ee55f11ac6f25eab03fef28 /test.py
parentde1e072c739b7f6a97fcdb5438920acfbb657576 (diff)
[project @ robey@lag.net-20060508002007-3b7b87c361fe876a]
add unit tests for SSHClient, and fix a few bugs that uncovered
Diffstat (limited to 'test.py')
-rwxr-xr-xtest.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test.py b/test.py
index 62f6b001..00767eb7 100755
--- a/test.py
+++ b/test.py
@@ -39,6 +39,7 @@ from test_packetizer import PacketizerTest
from test_transport import TransportTest
from test_sftp import SFTPTest
from test_sftp_big import BigSFTPTest
+from test_client import SSHClientTest
default_host = 'localhost'
default_user = os.environ.get('USER', 'nobody')
@@ -100,6 +101,7 @@ suite.addTest(unittest.makeSuite(KexTest))
suite.addTest(unittest.makeSuite(PacketizerTest))
if options.use_transport:
suite.addTest(unittest.makeSuite(TransportTest))
+suite.addTest(unittest.makeSuite(SSHClientTest))
if options.use_sftp:
suite.addTest(unittest.makeSuite(SFTPTest))
if options.use_big_file: