You are here

public function Twig_Tests_ExpressionParserTest::testAttributeCallDoesNotSupportNamedArguments in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/twig/twig/test/Twig/Tests/ExpressionParserTest.php \Twig_Tests_ExpressionParserTest::testAttributeCallDoesNotSupportNamedArguments()

@expectedException Twig_Error_Syntax

File

vendor/twig/twig/test/Twig/Tests/ExpressionParserTest.php, line 221

Class

Twig_Tests_ExpressionParserTest

Code

public function testAttributeCallDoesNotSupportNamedArguments() {
  $env = new Twig_Environment($this
    ->getMock('Twig_LoaderInterface'), array(
    'cache' => false,
    'autoescape' => false,
  ));
  $parser = new Twig_Parser($env);
  $parser
    ->parse($env
    ->tokenize('{{ foo.bar(name="Foo") }}', 'index'));
}