public function FileAssetTest::testGetLastModifiedValue

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Asset/FileAssetTest.php, line 47

Class

FileAssetTest

Namespace

Assetic\Test\Asset

Code

public function testGetLastModifiedValue() {
  $asset = new FileAsset(__FILE__);
  $this
    ->assertLessThan(time(), $asset
    ->getLastModified(), '->getLastModified() returns the mtime');
}