12 lines
181 B
Python
12 lines
181 B
Python
|
|
from . import TestCase
|
|
|
|
|
|
class ViewTests(TestCase):
|
|
"""
|
|
Test root views module.
|
|
"""
|
|
|
|
def test_includeme(self):
|
|
self.config.include('rattail.pyramid.views')
|