public function Twig_Tests_LexerTest::testLongComments

File

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

Class

Twig_Tests_LexerTest

Code

public function testLongComments() {
  $template = '{# ' . str_repeat('*', 100000) . ' #}';
  $lexer = new Twig_Lexer(new Twig_Environment());
  $lexer
    ->tokenize($template);

  // should not throw an exception
}