Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
test_configuration.py 287 B
from django.urls import reverse

from web.tests import LoggedInTestCase


class ConfigurationViewTests(LoggedInTestCase):
    def test_visit_details_request(self):
        response = self.client.get(reverse('web.views.configuration'))
        self.assertEqual(response.status_code, 200)