public function testIncludeTagNoWith()
 {
     $template = new Template();
     $template->setFileSystem(new LiquidTestFileSystem());
     $template->parse("Outer-{% include 'inner' %}-Outer-{% include 'inner' other:'23' %}");
     $output = $template->render(array("inner" => "orig", "var" => array(1, 2, 3)));
     $this->assertEquals("Outer-Inner: orig-Outer-Inner: orig23", $output);
 }