fvid/tests/helper.py

9 lines
179 B
Python
Raw Normal View History

import unittest
class SkippableTest(unittest.TestCase):
def skip(self, msg):
if hasattr(self, 'skipTest'):
return self.skipTest(msg)
return None