public function AssetCollectionTest::testRemoveLeaf

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Asset/AssetCollectionTest.php, line 278

Class

AssetCollectionTest

Namespace

Assetic\Test\Asset

Code

public function testRemoveLeaf() {
  $coll = new AssetCollection(array(
    $leaf = new StringAsset('asdf'),
  ));
  $this
    ->assertTrue($coll
    ->removeLeaf($leaf));
}