diff options
author | Robey Pointer <robey@lag.net> | 2008-01-23 17:38:49 -0800 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2008-01-23 17:38:49 -0800 |
commit | 31544301f5a57840d97e2bf94a6fcf358ad7c47a (patch) | |
tree | 779b72534dfba692384b93a1761727a196ba04ac /test.py | |
parent | 4031ae9292d4f3716752c77fedaeddba8bf879d2 (diff) |
[project @ robey@lag.net-20080124013849-jno9xkgwvvqrvuov]
split auth tests into their own file, and clean up the remaining transport
tests a bit (use existing refactoring).
Diffstat (limited to 'test.py')
-rwxr-xr-x | test.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -39,6 +39,7 @@ from test_hostkeys import HostKeysTest from test_pkey import KeyTest from test_kex import KexTest from test_packetizer import PacketizerTest +from test_auth import AuthTest from test_transport import TransportTest from test_sftp import SFTPTest from test_sftp_big import BigSFTPTest @@ -125,6 +126,7 @@ def main(): suite.addTest(unittest.makeSuite(KexTest)) suite.addTest(unittest.makeSuite(PacketizerTest)) if options.use_transport: + suite.addTest(unittest.makeSuite(AuthTest)) suite.addTest(unittest.makeSuite(TransportTest)) suite.addTest(unittest.makeSuite(SSHClientTest)) if options.use_sftp: |