You are here

public function Twig_Tests_ExpressionParserTest::getFailingTestsForArray 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::getFailingTestsForArray()

File

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

Class

Twig_Tests_ExpressionParserTest

Code

public function getFailingTestsForArray() {
  return array(
    array(
      '{{ [1, "a": "b"] }}',
    ),
    array(
      '{{ {"a": "b", 2} }}',
    ),
  );
}