In your test methods you can now access the global class atribute _mine through self. So you can do something like this:
def test_something(self):
self.assertEqual(self._mine.attribute, 'myAttribute')
In your test methods you can now access the global class atribute _mine through self. So you can do something like this:
def test_something(self):
self.assertEqual(self._mine.attribute, 'myAttribute')