public function LazyAssetManagerTest::testIsDebug

File

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

Class

LazyAssetManagerTest

Namespace

Assetic\Test\Factory

Code

public function testIsDebug() {
  $this->factory
    ->expects($this
    ->once())
    ->method('isDebug')
    ->will($this
    ->returnValue(false));
  $this
    ->assertSame(false, $this->am
    ->isDebug(), '->isDebug() proxies the factory');
}