blob: d91cf19d58d4480b976af23ddaf7a2dd590c7a20 [file] [log] [blame]
'''
This is a terrible example of how you would write some tests for tsqa
'''
import tsqa.utils
unittest = tsqa.utils.import_unittest()
def test_example():
assert True == True
class TestExample(unittest.TestCase):
def test_example(self):
assert True == True