Support nose framework for the whole test suite.
--HG--
branch : trunk
diff --git a/tests/test_inheritance.py b/tests/test_inheritance.py
index 13a9d8d..19c3fc2 100644
--- a/tests/test_inheritance.py
+++ b/tests/test_inheritance.py
@@ -6,9 +6,14 @@
:copyright: (c) 2009 by the Jinja Team.
:license: BSD, see LICENSE for more details.
"""
+
from jinja2 import Environment, DictLoader
from jinja2.exceptions import TemplateSyntaxError
+import conftest
+conftest.GlobalLoader.scope = globals()
+
+
LAYOUTTEMPLATE = '''\
|{% block block1 %}block 1 from layout{% endblock %}
|{% block block2 %}block 2 from layout{% endblock %}