public function Twig_Tests_Loader_ArrayTest::testIsFresh

File

drupal/core/vendor/twig/twig/test/Twig/Tests/Loader/ArrayTest.php, line 56

Class

Twig_Tests_Loader_ArrayTest

Code

public function testIsFresh() {
  $loader = new Twig_Loader_Array(array(
    'foo' => 'bar',
  ));
  $this
    ->assertTrue($loader
    ->isFresh('foo', time()));
}