commit | c7e6c6d2e573804709ba4c01433860f785a865c7 | [log] [tgz] |
---|---|---|
author | Rene Leonhardt <rene.leonhardt@gmail.com> | Mon Apr 20 23:08:53 2009 +0200 |
committer | Rene Leonhardt <rene.leonhardt@gmail.com> | Mon Apr 20 23:08:53 2009 +0200 |
tree | 4d7c245a05ba7c30e83f1a7b1b0dad7a2155522b | |
parent | 94ee6aa9788fa4577566efd4313bf84cdb2e48d8 [diff] [blame] |
Support nose framework for the whole test suite. --HG-- branch : trunk
diff --git a/tests/test_macros.py b/tests/test_macros.py index e2e7bc2..8b3bdb9 100644 --- a/tests/test_macros.py +++ b/tests/test_macros.py
@@ -7,6 +7,10 @@ :license: BSD, see LICENSE for more details. """ +import conftest +conftest.GlobalLoader.scope = globals() + + SIMPLE = '''\ {% macro say_hello(name) %}Hello {{ name }}!{% endmacro %} {{ say_hello('Peter') }}\