paramiko/tests/util.py

12 lines
303 B
Python
Raw Normal View History

2013-10-30 19:19:30 -04:00
import os
2012-10-15 16:21:58 -04:00
import unittest
class ParamikoTest(unittest.TestCase):
# for Python 2.3 and below
if not hasattr(unittest.TestCase, 'assertTrue'):
assertTrue = unittest.TestCase.failUnless
if not hasattr(unittest.TestCase, 'assertFalse'):
assertFalse = unittest.TestCase.failIf