I have 2 classes, A and B.
class A (unittest.TestCase):
#methods here
class B (A):
#methods here
when i try and call self.assertEqual(1,1) in a method of class B, I get the error mentioned here: Why do I get an AttributeError with Python3.4's `unittest` library? Yet if I call it in A, everything is fine. Does unittest not follow regular inheritance? Is there only a very specific way you can use it?