itplanning/tests/api/__init__.py
2021-06-01 14:16:05 +02:00

10 lines
191 B
Python

import unittest
from .test_appointment import AppointmentTestCase
def suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(AppointmentTestCase))
return suite