Source code for intranet.apps.printing.tests

from django.urls import reverse

from ...test.ion_test import IonTestCase


[docs]class PrintingTest(IonTestCase):
[docs] def test_printing_view(self): self.make_admin() response = self.client.get(reverse("printing")) self.assertEqual(response.status_code, 200)