Issue #2276219 followup by Mile23: Asset libraries should declare their license.

8.0.x
Alex Pott 2014-07-19 09:09:44 +01:00
parent 6e6f2c6de3
commit 8d6f823971
1 changed files with 6 additions and 6 deletions

View File

@ -75,7 +75,7 @@ class LibraryDiscoveryParserTest extends UnitTestCase {
* *
* @covers ::buildByExtension() * @covers ::buildByExtension()
*/ */
public function testBuildLibrariesByExtensionSimple() { public function testBuildByExtensionSimple() {
$this->moduleHandler->expects($this->atLeastOnce()) $this->moduleHandler->expects($this->atLeastOnce())
->method('moduleExists') ->method('moduleExists')
->with('example_module') ->with('example_module')
@ -102,7 +102,7 @@ class LibraryDiscoveryParserTest extends UnitTestCase {
* *
* @covers ::buildByExtension() * @covers ::buildByExtension()
*/ */
public function testBuildLibrariesByExtensionWithTheme() { public function testBuildByExtensionWithTheme() {
$this->moduleHandler->expects($this->atLeastOnce()) $this->moduleHandler->expects($this->atLeastOnce())
->method('moduleExists') ->method('moduleExists')
->with('example_theme') ->with('example_theme')
@ -126,7 +126,7 @@ class LibraryDiscoveryParserTest extends UnitTestCase {
* *
* @covers ::buildByExtension() * @covers ::buildByExtension()
*/ */
public function testBuildLibrariesByExtensionWithMissingLibraryFile() { public function testBuildByExtensionWithMissingLibraryFile() {
$this->moduleHandler->expects($this->atLeastOnce()) $this->moduleHandler->expects($this->atLeastOnce())
->method('moduleExists') ->method('moduleExists')
->with('example_module') ->with('example_module')
@ -167,7 +167,7 @@ class LibraryDiscoveryParserTest extends UnitTestCase {
* *
* @covers ::buildByExtension() * @covers ::buildByExtension()
*/ */
public function testBuildLibrariesByExtensionWithMissingInformation() { public function testBuildByExtensionWithMissingInformation() {
$this->moduleHandler->expects($this->atLeastOnce()) $this->moduleHandler->expects($this->atLeastOnce())
->method('moduleExists') ->method('moduleExists')
->with('example_module_missing_information') ->with('example_module_missing_information')
@ -352,7 +352,7 @@ class LibraryDiscoveryParserTest extends UnitTestCase {
* @expectedException \Drupal\Core\Asset\Exception\LibraryDefinitionMissingLicenseException * @expectedException \Drupal\Core\Asset\Exception\LibraryDefinitionMissingLicenseException
* @expectedExceptionMessage Missing license information in library definition for 'no-license-info-but-remote' in core/tests/Drupal/Tests/Core/Asset/library_test_files/licenses_missing_information.libraries.yml: it has a remote, but no license. * @expectedExceptionMessage Missing license information in library definition for 'no-license-info-but-remote' in core/tests/Drupal/Tests/Core/Asset/library_test_files/licenses_missing_information.libraries.yml: it has a remote, but no license.
* *
* @covers ::buildLibrariesByExtension() * @covers ::buildByExtension()
*/ */
public function testLibraryThirdPartyWithMissingLicense() { public function testLibraryThirdPartyWithMissingLicense() {
$this->moduleHandler->expects($this->atLeastOnce()) $this->moduleHandler->expects($this->atLeastOnce())
@ -370,7 +370,7 @@ class LibraryDiscoveryParserTest extends UnitTestCase {
/** /**
* Tests a library with various licenses, some GPL-compatible, some not. * Tests a library with various licenses, some GPL-compatible, some not.
* *
* @covers ::buildLibrariesByExtension() * @covers ::buildByExtension()
*/ */
public function testLibraryWithLicenses() { public function testLibraryWithLicenses() {
$this->moduleHandler->expects($this->atLeastOnce()) $this->moduleHandler->expects($this->atLeastOnce())