public function Twig_Tests_LexerTest::testLineDirectiveInline in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/twig/twig/test/Twig/Tests/LexerTest.php \Twig_Tests_LexerTest::testLineDirectiveInline()
File
- vendor/
twig/ twig/ test/ Twig/ Tests/ LexerTest.php, line 83
Class
Code
public function testLineDirectiveInline() {
$template = "foo\n" . "bar{% line 10 %}{{\n" . "baz\n" . "}}\n";
$lexer = new Twig_Lexer(new Twig_Environment($this
->getMock('Twig_LoaderInterface')));
$stream = $lexer
->tokenize($template);
// foo\nbar
$this
->assertSame(1, $stream
->expect(Twig_Token::TEXT_TYPE)
->getLine());
// {{
$this
->assertSame(10, $stream
->expect(Twig_Token::VAR_START_TYPE)
->getLine());
// baz
$this
->assertSame(11, $stream
->expect(Twig_Token::NAME_TYPE)
->getLine());
}