public function LibraryDiscoveryParserTest::testJsWithPositiveWeight in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryParserTest.php \Drupal\Tests\Core\Asset\LibraryDiscoveryParserTest::testJsWithPositiveWeight()
Ensures that you cannot provide positive weights for JavaScript libraries.
@expectedException \UnexpectedValueException
@covers ::buildByExtension
File
- core/
tests/ Drupal/ Tests/ Core/ Asset/ LibraryDiscoveryParserTest.php, line 311 - Contains \Drupal\Tests\Core\Asset\LibraryDiscoveryParserTest.
Class
- LibraryDiscoveryParserTest
- @coversDefaultClass \Drupal\Core\Asset\LibraryDiscoveryParser @group Asset
Namespace
Drupal\Tests\Core\AssetCode
public function testJsWithPositiveWeight() {
$this->moduleHandler
->expects($this
->atLeastOnce())
->method('moduleExists')
->with('js_positive_weight')
->will($this
->returnValue(TRUE));
$path = __DIR__ . '/library_test_files';
$path = substr($path, strlen($this->root) + 1);
$this->libraryDiscoveryParser
->setPaths('module', 'js_positive_weight', $path);
$this->libraryDiscoveryParser
->buildByExtension('js_positive_weight');
}