fenom/tests/cases/Fenom/CustomProviderTest.php
bzick d096a80395 Fix #132 + test.
Also small performance fix
2015-01-08 15:52:33 +03:00

23 lines
602 B
PHP

<?php
namespace Fenom;
class CustomProviderTest extends TestCase
{
public function setUp()
{
parent::setUp();
$this->fenom->addProvider("my", new Provider(FENOM_RESOURCES . '/provider'));
}
public function testCustom()
{
$this->assertTrue($this->fenom->templateExists('my:include.tpl'));
$this->assertFalse($this->fenom->templateExists('my:include-none.tpl'));
$this->assertRender("start: {include 'my:include.tpl'}", 'start: include template');
$this->assertTrue($this->fenom->getTemplate('my:include.tpl')->isValid());
}
}