2024-08-15 23:12:02 -05:00
|
|
|
# -*- coding: utf-8; -*-
|
|
|
|
|
|
|
|
|
|
from tailbone.views import settings as mod
|
|
|
|
|
from tests.util import WebTestCase
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestSettingView(WebTestCase):
|
|
|
|
|
|
|
|
|
|
def test_includeme(self):
|
2026-01-01 10:23:03 -06:00
|
|
|
self.pyramid_config.add_directive('add_wutta_master_view', 'wuttaweb.conf.add_master_view')
|
2024-08-15 23:12:02 -05:00
|
|
|
self.pyramid_config.include('tailbone.views.settings')
|