summaryrefslogtreecommitdiffhomepage
path: root/tests/util.py
blob: 1b380b756148c84aa59dc928b851b5abe705b1f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
import os
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