Exemplo n.º 1
0
 public function testNestedCommentHandling()
 {
     $tpl = new Dwoo_Template_String('{* foo {* bar *} baz *}');
     $tpl->forceCompilation();
     $cmp = new Dwoo_Compiler();
     $cmp->setNestedCommentsHandling(true);
     $this->assertEquals('', $this->dwoo->get($tpl, array(), $cmp));
 }