1
0
Fork 0
wuttaweb/tests/views/test_settings.py
Lance Edgar d35e6e71c9 feat: expose Web Libraries in app info config page
get away from that CDN, hopefully speeds things up etc.
2024-08-06 20:53:23 -05:00

24 lines
643 B
Python

# -*- coding: utf-8; -*-
from tests.views.utils import WebTestCase
from wuttaweb.views import settings
class TestAppInfoView(WebTestCase):
def test_index(self):
# sanity/coverage check
view = settings.AppInfoView(self.request)
response = view.index()
def test_configure_get_simple_settings(self):
# sanity/coverage check
view = settings.AppInfoView(self.request)
simple = view.configure_get_simple_settings()
def test_configure_get_context(self):
# sanity/coverage check
view = settings.AppInfoView(self.request)
context = view.configure_get_context()