From 64ce3e0e6268864f8e70858c3b0e0518cf34653b Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 9 May 2011 17:47:09 +0200 Subject: [PATCH] moved a test --- test/Twig/Tests/Fixtures/tags/autoescape/raw.test | 10 ++++++++++ test/Twig/Tests/Fixtures/tags/raw.test | 10 ---------- 2 files changed, 10 insertions(+), 10 deletions(-) create mode 100644 test/Twig/Tests/Fixtures/tags/autoescape/raw.test delete mode 100644 test/Twig/Tests/Fixtures/tags/raw.test diff --git a/test/Twig/Tests/Fixtures/tags/autoescape/raw.test b/test/Twig/Tests/Fixtures/tags/autoescape/raw.test new file mode 100644 index 0000000..86e55fd --- /dev/null +++ b/test/Twig/Tests/Fixtures/tags/autoescape/raw.test @@ -0,0 +1,10 @@ +--TEST-- +"autoescape" tag does not escape when raw is used as a filter +--TEMPLATE-- +{% autoescape true %} +{{ var|raw }} +{% endautoescape %} +--DATA-- +return array('var' => '
') +--EXPECT-- +
diff --git a/test/Twig/Tests/Fixtures/tags/raw.test b/test/Twig/Tests/Fixtures/tags/raw.test deleted file mode 100644 index 86e55fd..0000000 --- a/test/Twig/Tests/Fixtures/tags/raw.test +++ /dev/null @@ -1,10 +0,0 @@ ---TEST-- -"autoescape" tag does not escape when raw is used as a filter ---TEMPLATE-- -{% autoescape true %} -{{ var|raw }} -{% endautoescape %} ---DATA-- -return array('var' => '
') ---EXPECT-- -
-- 1.7.2.5