3
0
Fork 0

feat: add basic App Info view (index only)

more to come!
This commit is contained in:
Lance Edgar 2024-08-05 21:49:18 -05:00
parent 9ac4f7525e
commit 9a739381ae
13 changed files with 192 additions and 5 deletions

View file

@ -0,0 +1,13 @@
# -*- coding: utf-8; -*-
from tests.views.utils import WebTestCase
from wuttaweb.views import settings
class TestAppInfoView(WebTestCase):
def test_index(self):
# just a sanity check
view = settings.AppInfoView(self.request)
response = view.index()