Example #1
0
 public function testGetOverridedTemplateFile()
 {
     $t = new Template($this->container);
     $t->setTemplateOverride('a/b', 'myplugin:c');
     $this->assertStringEndsWith('app/Core/../../plugins/Myplugin/Template/c.php', $t->getTemplateFile('a/b'));
     $this->assertStringEndsWith('app/Core/../Template/d.php', $t->getTemplateFile('d'));
 }