public function Twig_Tests_LexerTest::testLongBlock

File

drupal/core/vendor/twig/twig/test/Twig/Tests/LexerTest.php, line 132

Class

Twig_Tests_LexerTest

Code

public function testLongBlock() {
  $template = '{% ' . str_repeat('x', 100000) . ' %}';
  $lexer = new Twig_Lexer(new Twig_Environment());
  $stream = $lexer
    ->tokenize($template);

  // should not throw an exception
}