3
0
Fork 0

feat: add basic configure view for appinfo

This commit is contained in:
Lance Edgar 2024-08-06 18:52:54 -05:00
parent dd207a4a05
commit ed67cdb2d8
15 changed files with 847 additions and 42 deletions

View file

@ -8,6 +8,17 @@ from pyramid.config import Configurator
from pyramid.router import Router
from wuttaweb import app as mod
from wuttjamaican.conf import WuttaConfig
class TestWebAppProvider(TestCase):
def test_basic(self):
# nb. just normal usage here, confirm it does the one thing we
# need it to..
config = WuttaConfig()
app = config.get_app()
handler = app.get_web_handler()
class TestMakeWuttaConfig(FileConfigTestCase):