public function HttpAssetTest::testInvalidUrl

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Asset/HttpAssetTest.php, line 44

Class

HttpAssetTest

Namespace

Assetic\Test\Asset

Code

public function testInvalidUrl() {
  $this
    ->setExpectedException('RuntimeException');
  $asset = new HttpAsset('http://invalid.com/foobar');
  $asset
    ->load();
}