Пример #1
0
 public function testTemplateReference()
 {
     $name = new Twig_Test_Loader_TemplateReference('foo');
     $loader = new Twig_Loader_Array(array('foo' => 'bar'));
     $loader->getCacheKey($name);
     $loader->getSource($name);
     $loader->isFresh($name, time());
     $loader->setTemplate($name, 'foobar');
 }
Пример #2
0
 public function testIsFresh()
 {
     $loader = new Twig_Loader_Array(array('foo' => 'bar'));
     $this->assertTrue($loader->isFresh('foo', time()));
 }
Пример #3
0
 /**
  * @expectedException Twig_Error_Loader
  */
 public function testIsFreshWhenTemplateDoesNotExist()
 {
     $loader = new Twig_Loader_Array(array());
     $loader->isFresh('foo', time());
 }