aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/force_escape.test
blob: 85a9b7172bdd49691b01232ead6d5ddf51f3f0cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
"escape" filter
--TEMPLATE--
{% set foo %}
    foo<br />
{% endset %}

{{ foo|e('html') -}}
{{ foo|e('js') }}
{% autoescape true %}
    {{ foo }}
{% endautoescape %}
--DATA--
return array()
--EXPECT--
    foo&lt;br /&gt;
\x20\x20\x20\x20foo\x3Cbr\x20\x2F\x3E\x0A
        foo<br />