2024-07-12 00:17:15 -05:00
|
|
|
# -*- coding: utf-8; -*-
|
|
|
|
|
|
|
|
from unittest import TestCase
|
|
|
|
|
|
|
|
from pyramid import testing
|
|
|
|
|
|
|
|
|
|
|
|
class TestIncludeMe(TestCase):
|
|
|
|
|
|
|
|
def test_basic(self):
|
|
|
|
with testing.testConfig() as pyramid_config:
|
|
|
|
|
|
|
|
# just ensure no error happens when included..
|
2025-08-31 12:26:43 -05:00
|
|
|
pyramid_config.include("wuttaweb.static")
|