public function Twig_Tests_EnvironmentTest::testAutoescapeOption

File

drupal/core/vendor/twig/twig/test/Twig/Tests/EnvironmentTest.php, line 14

Class

Twig_Tests_EnvironmentTest

Code

public function testAutoescapeOption() {
  $loader = new Twig_Loader_Array(array(
    'html' => '{{ foo }} {{ foo }}',
    'js' => '{{ bar }} {{ bar }}',
  ));
  $twig = new Twig_Environment($loader, array(
    'debug' => true,
    'cache' => false,
    'autoescape' => array(
      $this,
      'escapingStrategyCallback',
    ),
  ));
  $this
    ->assertEquals('foo<br/ > foo<br/ >', $twig
    ->render('html', array(
    'foo' => 'foo<br/ >',
  )));
  $this
    ->assertEquals('foo\\x3cbr\\x2f \\x3e foo\\x3cbr\\x2f \\x3e', $twig
    ->render('js', array(
    'bar' => 'foo<br/ >',
  )));
}