itplanning/tests/api/test_appointment.py

11 lines
239 B
Python
Raw Normal View History

2021-06-01 12:16:05 +00:00
from ..testBase import APITestBase
from pony.orm import db_session
class AppointmentTestCase(APITestBase):
def setUp(self):
super().setUp()
def test_get_appointement(self):
2021-06-13 19:03:49 +00:00
self.make_request("appointment/", 404)