diff options
author | Robey Pointer <robey@lag.net> | 2005-05-10 17:36:38 +0000 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2005-05-10 17:36:38 +0000 |
commit | 366f216e3f4792da0f619e6aeff84a91230c2527 (patch) | |
tree | f25a96245cc7850c15482db7a407788c44446d39 /test.py | |
parent | e8efe095a68a764b1b9ebaa73510fea16707fd5a (diff) |
[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-8]
add unit tests for the packetizer, and fix a little locking bug where i think more of the packetizer write function should be inside a lock
Diffstat (limited to 'test.py')
-rwxr-xr-x | test.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -32,6 +32,7 @@ from test_message import MessageTest from test_file import BufferedFileTest from test_pkey import KeyTest from test_kex import KexTest +from test_packetizer import PacketizerTest from test_transport import TransportTest from test_sftp import SFTPTest @@ -87,6 +88,7 @@ suite.addTest(unittest.makeSuite(BufferedFileTest)) if options.use_pkey: suite.addTest(unittest.makeSuite(KeyTest)) suite.addTest(unittest.makeSuite(KexTest)) +suite.addTest(unittest.makeSuite(PacketizerTest)) if options.use_transport: suite.addTest(unittest.makeSuite(TransportTest)) if options.use_sftp: |