11 lines
238 B
Python
11 lines
238 B
Python
from ..testBase import APITestBase
|
|
from pony.orm import db_session
|
|
|
|
|
|
class AppointmentTestCase(APITestBase):
|
|
def setUp(self):
|
|
super().setUp()
|
|
|
|
def test_get_appointement(self):
|
|
self.make_request("appointment", 200)
|