Unit test
This commit is contained in:
parent
0ba4f6eafe
commit
12f8191001
|
@ -140,5 +140,21 @@ class TplBlockTest extends TestCase
|
|||
new TplBlock("kjsd54.5");
|
||||
}
|
||||
|
||||
public function testIfRemoveNonGivenVarsWorks(){
|
||||
|
||||
$tpl = new TplBlock();
|
||||
$resultWithReplace = $tpl
|
||||
->doReplaceNonGivenVars()
|
||||
->applyTplStr("Hello {{name}}");
|
||||
|
||||
$resultWithoutReplace = $tpl
|
||||
->dontReplaceNonGivenVars()
|
||||
->applyTplStr("Hello {{name}}");
|
||||
|
||||
|
||||
$this->assertContains("name",$resultWithoutReplace);
|
||||
$this->assertFalse(strpos("name", $resultWithReplace));
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user