commit | 9cf9591ef788fcca284d9fc1b4997e2cb888e7f0 | [log] [tgz] |
---|---|---|
author | Armin Ronacher <armin.ronacher@active-4.com> | Sat May 24 19:54:43 2008 +0200 |
committer | Armin Ronacher <armin.ronacher@active-4.com> | Sat May 24 19:54:43 2008 +0200 |
tree | 7a22163f728de59b3ebc61c182370e596d55538a | |
parent | 4e6f9a254910ce3524ea9a1c9bfb6feb54716f01 [diff] [blame] |
fixed bug with static unicode strings and auto escaping --HG-- branch : trunk
diff --git a/tests/test_ext.py b/tests/test_ext.py index f91b0f7..7da2515 100644 --- a/tests/test_ext.py +++ b/tests/test_ext.py
@@ -66,3 +66,7 @@ env = Environment(extensions=[TestExtension]) tmpl = env.from_string('{% test %}') assert tmpl.render() == 'False|42|23|{}' + + +def test_identifier(): + assert TestExtension.identifier == __name__ + '.TestExtension'