itplanning/tests/api/__init__.py

10 lines
191 B
Python
Raw Permalink Normal View History

2021-06-01 12:16:05 +00:00
import unittest
from .test_appointment import AppointmentTestCase
def suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(AppointmentTestCase))
return suite