public function GlobAssetTest::testInterface

File

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

Class

GlobAssetTest

Namespace

Assetic\Test\Asset

Code

public function testInterface() {
  $asset = new GlobAsset(__DIR__ . '/*.php');
  $this
    ->assertInstanceOf('Assetic\\Asset\\AssetInterface', $asset, 'Asset implements AssetInterface');
}