diff options
author | Robey Pointer <robey@lag.net> | 2006-05-07 17:20:07 -0700 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2006-05-07 17:20:07 -0700 |
commit | 2a03425e277c5fdfab612ad4055d1dd30d4b9a9e (patch) | |
tree | 2a6bde55ea2f9e626ee55f11ac6f25eab03fef28 /test.py | |
parent | de1e072c739b7f6a97fcdb5438920acfbb657576 (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-x | test.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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: |