mirror of
https://github.com/nikdoof/tvorganise.git
synced 2025-12-13 06:42:16 +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
|
|
|