public function FileAssetTest::testInvalidBase

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Asset/FileAssetTest.php, line 66

Class

FileAssetTest

Namespace

Assetic\Test\Asset

Code

public function testInvalidBase() {
  $this
    ->setExpectedException('InvalidArgumentException');
  $asset = new FileAsset(__FILE__, array(), __DIR__ . '/foo');
}