public function AssetFactoryTest::testCreateAssetCollection

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Factory/AssetFactoryTest.php, line 101

Class

AssetFactoryTest

Namespace

Assetic\Test\Factory

Code

public function testCreateAssetCollection() {
  $asset = $this->factory
    ->createAsset(array(
    '*',
    basename(__FILE__),
  ));
  $this
    ->assertInstanceOf('Assetic\\Asset\\AssetCollection', $asset, '->createAsset() creates an asset collection');
}