3
0
Fork 0

feat: expose Web Libraries in app info config page

get away from that CDN, hopefully speeds things up etc.
This commit is contained in:
Lance Edgar 2024-08-06 19:59:30 -05:00
parent ed67cdb2d8
commit d35e6e71c9
5 changed files with 306 additions and 24 deletions

View file

@ -8,11 +8,16 @@ from wuttaweb.views import settings
class TestAppInfoView(WebTestCase):
def test_index(self):
# just a sanity check
# sanity/coverage check
view = settings.AppInfoView(self.request)
response = view.index()
def test_configure_get_simple_settings(self):
# just a sanity check
# 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()