mirror of
https://github.com/nikdoof/tvorganise.git
synced 2025-12-13 14:52:17 +00:00
12 lines
140 B
Python
12 lines
140 B
Python
import unittest
|
|
import testtvorganise
|
|
|
|
def all():
|
|
|
|
suite = unittest.TestSuite()
|
|
|
|
testtvorganise.suite(suite)
|
|
|
|
return suite
|
|
|