diff --git a/test/TplBlockTest.php b/test/TplBlockTest.php index 1b6b362..659314d 100644 --- a/test/TplBlockTest.php +++ b/test/TplBlockTest.php @@ -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)); + + + } }