10 lines
191 B
Python
10 lines
191 B
Python
|
import unittest
|
||
|
from .test_appointment import AppointmentTestCase
|
||
|
|
||
|
|
||
|
def suite():
|
||
|
suite = unittest.TestSuite()
|
||
|
|
||
|
suite.addTest(unittest.makeSuite(AppointmentTestCase))
|
||
|
return suite
|