Added anothe test
authorArmin Ronacher <armin.ronacher@active-4.com>
Tue, 6 Jul 2010 10:00:33 +0000 (12:00 +0200)
committerArmin Ronacher <armin.ronacher@active-4.com>
Tue, 6 Jul 2010 10:00:33 +0000 (12:00 +0200)
--HG--
branch : trunk

jinja2/testsuite/ext.py

index 530fed4dcf5ab1c4a618178956a01ca496e72e5b..89b8579a43575904a1c272941aa636591a13fe2a 100644 (file)
@@ -56,7 +56,8 @@ newstyle_i18n_templates = {
     'transvars2.html': '{% trans num=count %}User: {{ num }}{% endtrans %}',
     'transvars3.html': '{% trans count=num %}User: {{ count }}{% endtrans %}',
     'novars.html': '{% trans %}%(hello)s{% endtrans %}',
-    'vars.html': '{% trans %}{{ foo }}%(foo)s{% endtrans %}'
+    'vars.html': '{% trans %}{{ foo }}%(foo)s{% endtrans %}',
+    'explicitvars.html': '{% trans foo="42" %}%(foo)s{% endtrans %}'
 }
 
 
@@ -364,6 +365,8 @@ class NewstyleInternationalizationTestCase(JinjaTestCase):
         assert t.render() == '%(hello)s'
         t = newstyle_i18n_env.get_template('vars.html')
         assert t.render(foo='42') == '42%(foo)s'
+        t = newstyle_i18n_env.get_template('explicitvars.html')
+        assert t.render() == '%(foo)s'
 
 
 class AutoEscapeTestCase(JinjaTestCase):