Move tests

This commit is contained in:
Markus Unterwaditzer 2014-08-31 21:48:21 +02:00
parent 077d06df54
commit 3550b26071
55 changed files with 2 additions and 6 deletions

View file

@ -0,0 +1 @@
{% macro hello(name) %}Hello {{ name }}!{% endmacro %}

View file

@ -0,0 +1 @@
<p>{{ value }}|{{ injected_value }}

View file

@ -0,0 +1,6 @@
{{ text }}
{{ html }}
{% autoescape false %}{{ text }}
{{ html }}{% endautoescape %}
{% autoescape true %}{{ text }}
{{ html }}{% endautoescape %}

1
tests/templates/mail.txt Normal file
View file

@ -0,0 +1 @@
{{ foo}} Mail

View file

@ -0,0 +1 @@
I'm nested

View file

@ -0,0 +1 @@
<h1>{{ whiskey }}</h1>

View file

@ -0,0 +1 @@
{{ value|super_reverse }}

View file

@ -0,0 +1,3 @@
{% if value is boolean %}
Success!
{% endif %}