11 lines
336 B
Python
11 lines
336 B
Python
# -*- coding: utf-8; -*-
|
|
|
|
from tailbone.views import settings as mod
|
|
from tests.util import WebTestCase
|
|
|
|
|
|
class TestSettingView(WebTestCase):
|
|
|
|
def test_includeme(self):
|
|
self.pyramid_config.add_directive('add_wutta_master_view', 'wuttaweb.conf.add_master_view')
|
|
self.pyramid_config.include('tailbone.views.settings')
|