public function DirectoryResourceTest::testIsFresh

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Factory/Resource/DirectoryResourceTest.php, line 18

Class

DirectoryResourceTest

Namespace

Assetic\Test\Factory\Resource

Code

public function testIsFresh() {
  $resource = new DirectoryResource(__DIR__);
  $this
    ->assertTrue($resource
    ->isFresh(time() + 5));
  $this
    ->assertFalse($resource
    ->isFresh(0));
}