diff options
| author | Chris McDonough <chrism@plope.com> | 2014-07-02 14:36:27 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2014-07-02 14:36:27 -0400 |
| commit | c688c70fb2bf6731bbdbf68682eebb203b540a04 (patch) | |
| tree | ea8180431e824e90638fa9bc3cee5b836646a1f5 /docs/quick_tutorial/jinja2/tutorial | |
| parent | ef69722a01f9a41819186187b7e1258272285a13 (diff) | |
| download | pyramid-c688c70fb2bf6731bbdbf68682eebb203b540a04.tar.gz pyramid-c688c70fb2bf6731bbdbf68682eebb203b540a04.tar.bz2 pyramid-c688c70fb2bf6731bbdbf68682eebb203b540a04.zip | |
dont need to use any settings, we include pyramid_jinja2 in main
Diffstat (limited to 'docs/quick_tutorial/jinja2/tutorial')
| -rw-r--r-- | docs/quick_tutorial/jinja2/tutorial/tests.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/docs/quick_tutorial/jinja2/tutorial/tests.py b/docs/quick_tutorial/jinja2/tutorial/tests.py index 0b22946f3..4381235ec 100644 --- a/docs/quick_tutorial/jinja2/tutorial/tests.py +++ b/docs/quick_tutorial/jinja2/tutorial/tests.py @@ -30,13 +30,7 @@ class TutorialViewTests(unittest.TestCase): class TutorialFunctionalTests(unittest.TestCase): def setUp(self): from tutorial import main - - settings = { - 'pyramid.includes': [ - 'pyramid_jinja2' - ] - } - app = main({}, **settings) + app = main({}) from webtest import TestApp self.testapp = TestApp(app) |
