public function FileAssetTest::testPathGuessing

File

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

Class

FileAssetTest

Namespace

Assetic\Test\Asset

Code

public function testPathGuessing() {
  $asset = new FileAsset(__FILE__, array(), __DIR__);
  $this
    ->assertEquals(basename(__FILE__), $asset
    ->getSourcePath(), '->__construct() guesses the asset path');
}