11 lines
233 B
Python
11 lines
233 B
Python
# -*- coding: utf-8; -*-
|
|
|
|
from tests.util import WebTestCase
|
|
|
|
|
|
class TestIncludeMe(WebTestCase):
|
|
|
|
def test_basic(self):
|
|
# just ensure no error happens when included..
|
|
self.pyramid_config.include('wuttaweb.views')
|