mirror of
https://github.com/wassname/catalyst.git
synced 2026-06-29 00:53:42 +08:00
6 lines
203 B
Python
6 lines
203 B
Python
import unittest
|
|
from test.testmessaging import *
|
|
|
|
if __name__ == '__main__':
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(MessagingTestCase)
|
|
unittest.TextTestRunner(verbosity=2).run(suite) |