Skip to content
Snippets Groups Projects
Commit 64a0fac6 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

unt tests for kit request

parent 75315d77
No related branches found
No related tags found
1 merge request!47Resolve "Email to technician"
Pipeline #
import datetime
from django.core import mail
from django.urls import reverse
from functions import create_appointment_type, create_appointment
......@@ -64,3 +65,23 @@ class ViewFunctionsTests(LoggedInTestCase):
self.assertEqual(response.status_code, 200)
self.assertTrue(item_name in response.content)
def test_kit_requests_send_email(self):
item_name = "Test item to be ordered"
item = Item.objects.create(disposable=True, name=item_name)
appointment_type = create_appointment_type()
appointment_type.required_equipment.add(item)
appointment_type.save()
appointment = create_appointment()
appointment.datetime_when = get_today_midnight_date() + datetime.timedelta(days=2)
appointment.appointment_types.add(appointment_type)
appointment.save()
response = self.client.get(reverse('web.views.kit_requests_send_mail',
kwargs={'start_date': str(get_today_midnight_date().strftime("%Y-%m-%d"))}))
self.assertEqual(response.status_code, 200)
self.assertTrue(item_name in response.content)
self.assertEqual(1, len(mail.outbox))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment