1
0
Fork 0
wuttaweb/tests/views/test_settings.py

19 lines
467 B
Python
Raw Normal View History

# -*- 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()
def test_configure_get_simple_settings(self):
# just a sanity check
view = settings.AppInfoView(self.request)
simple = view.configure_get_simple_settings()