1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# coding: utf8
# Author: Rodrigo Bistolfi
# Date: 03/2013
""" Base class for Nikola test cases """
__all__ = ["BaseTestCase"]
import sys
import unittest
if sys.version_info < (2, 7):
try:
import unittest2
_unittest2 = True
except ImportError:
_unittest2 = False
if _unittest2:
BaseTestCase = unittest2.TestCase
else:
class BaseTestCase(unittest.TestCase):
""" Base class for providing 2.6 compatibility """
def assertIs(self, first, second, msg=None):
self.assertTrue(first is second)
def assertIsNot(self, first, second, msg=None):
self.assertTrue(first is not second)
def assertIsNone(self, expr, msg=None):
self.assertTrue(expr is None)
def assertIsNotNone(self, expr, msg=None):
self.assertTrue(expr is not None)
def assertIn(self, first, second, msg=None):
self.assertTrue(first in second)
def assertNotIn(self, first, second, msg=None):
self.assertTrue(first not in second)
def assertIsInstance(self, obj, cls, msg=None):
self.assertTrue(isinstance(obj, cls))
def assertNotIsInstance(self, obj, cls, msg=None):
self.assertFalse(isinstance(obj, cls))
else:
BaseTestCase = unittest.TestCase
|