diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2012-10-15 13:33:16 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2012-10-15 13:33:16 -0700 |
commit | 786920a3208fa335f334689d65b7302e9d52a568 (patch) | |
tree | dca1487fe19f6bdbff1fc965521e94d1176a099b /tests/test_util.py | |
parent | 78815afe9db56846279ceee5af3863c0ee16e9b8 (diff) | |
parent | dfb45dec7fac59559009cac16d9b354ef4890de3 (diff) |
Merge branch '1.8'
Diffstat (limited to 'tests/test_util.py')
-rw-r--r-- | tests/test_util.py | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/tests/test_util.py b/tests/test_util.py index 7e56245d..458709b2 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -28,6 +28,7 @@ import unittest from Crypto.Hash import SHA import paramiko.util +from util import ParamikoTest test_config_file = """\ Host * @@ -58,17 +59,7 @@ BGQ3GQ/Fc7SX6gkpXkwcZryoi4kNFhHu5LvHcZPdxXV1D+uTMfGS1eyd2Yz/DoNWXNAl8TI0cAsW\ from paramiko import * -class UtilTest (unittest.TestCase): - - assertTrue = unittest.TestCase.failUnless # for Python 2.3 and below - assertFalse = unittest.TestCase.failIf # for Python 2.3 and below - - def setUp(self): - pass - - def tearDown(self): - pass - +class UtilTest(ParamikoTest): def test_1_import(self): """ verify that all the classes can be imported from paramiko. |