diff options
author | Robey Pointer <robey@lag.net> | 2004-11-07 02:08:11 +0000 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2004-11-07 02:08:11 +0000 |
commit | 0ab2735dd43b1ff18a122095b77c0d6031c27c91 (patch) | |
tree | cba5f1bc8f202533eee300f8238f7970e1f68e8e /test.py | |
parent | a97b9946bb87d380bb919814c0a51aa0307f9a8c (diff) |
[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-102]
add key exchange tests + 1 more sftp test
add test suite for key-exchange protocols, since i apparently broke the
"gex" protocol recently and never noticed. also add an sftp unit test for
mkdir/rmdir.
Diffstat (limited to 'test.py')
-rwxr-xr-x | test.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -31,6 +31,7 @@ sys.path.append('tests/') from test_message import MessageTest from test_file import BufferedFileTest from test_pkey import KeyTest +from test_kex import KexTest from test_transport import TransportTest from test_sftp import SFTPTest @@ -72,6 +73,7 @@ suite.addTest(unittest.makeSuite(MessageTest)) suite.addTest(unittest.makeSuite(BufferedFileTest)) if options.use_pkey: suite.addTest(unittest.makeSuite(KeyTest)) +suite.addTest(unittest.makeSuite(KexTest)) suite.addTest(unittest.makeSuite(TransportTest)) if options.use_sftp: suite.addTest(unittest.makeSuite(SFTPTest)) |