public function GlobAssetTest::testGetLastModifiedValue

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Asset/GlobAssetTest.php, line 42

Class

GlobAssetTest

Namespace

Assetic\Test\Asset

Code

public function testGetLastModifiedValue() {
  $assets = new GlobAsset(__DIR__ . '/*.php');
  $this
    ->assertLessThan(time(), $assets
    ->getLastModified(), '->getLastModified() returns a file mtime');
}