Add to Github

This commit is contained in:
tecnovert
2019-07-17 17:12:06 +02:00
commit e242f50b2b
26 changed files with 5035 additions and 0 deletions

11
tests/__init__.py Normal file
View File

@@ -0,0 +1,11 @@
import unittest
import tests.test_run
import tests.test_other
def test_suite():
loader = unittest.TestLoader()
suite = loader.loadTestsFromModule(tests.test_run)
suite.addTests(loader.loadTestsFromModule(tests.test_other))
return suite