feat: add basic App Info view (index only)
more to come!
This commit is contained in:
parent
9ac4f7525e
commit
9a739381ae
13 changed files with 192 additions and 5 deletions
13
tests/views/test_settings.py
Normal file
13
tests/views/test_settings.py
Normal 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()
|
Loading…
Add table
Add a link
Reference in a new issue