public function LazyAssetManagerTest::testSetFormula

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Factory/LazyAssetManagerTest.php, line 81

Class

LazyAssetManagerTest

Namespace

Assetic\Test\Factory

Code

public function testSetFormula() {
  $this->am
    ->setFormula('foo', array());
  $this->am
    ->load();
  $this
    ->assertTrue($this->am
    ->hasFormula('foo'), '->load() does not remove manually added formulae');
}