test_utils.py 294 B

1234567
  1. from django.test import TestCase
  2. from misago.views.utils import is_request_to_misago
  3. class MisagoExceptionHandlerTests(TestCase):
  4. def test_is_request_to_misago(self):
  5. """is_request_to_misago correctly detects requests directed at Misago"""
  6. self.fail("Not yet implemented")