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)