public function Twig_Tests_Node_Expression_ParentTest::getTests

Overrides Twig_Test_NodeTestCase::getTests

File

drupal/core/vendor/twig/twig/test/Twig/Tests/Node/Expression/ParentTest.php, line 33

Class

Twig_Tests_Node_Expression_ParentTest

Code

public function getTests() {
  $tests = array();
  $tests[] = array(
    new Twig_Node_Expression_Parent('foo', 1),
    '$this->renderParentBlock("foo", $context, $blocks)',
  );
  return $tests;
}