function LibraryDiscoveryParserTest::providerTestCssAssert

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryParserTest.php \Drupal\Tests\Core\Asset\LibraryDiscoveryParserTest::providerTestCssAssert()
  2. 10 core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryParserTest.php \Drupal\Tests\Core\Asset\LibraryDiscoveryParserTest::providerTestCssAssert()
  3. 11.x core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryParserTest.php \Drupal\Tests\Core\Asset\LibraryDiscoveryParserTest::providerTestCssAssert()

Data provider for testing bad CSS declarations.

File

core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryParserTest.php, line 749

Class

LibraryDiscoveryParserTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Asset%21LibraryDiscoveryParser.php/class/LibraryDiscoveryParser/9" title="Parses library files to get extension data." class="local">\Drupal\Core\Asset\LibraryDiscoveryParser</a> @group Asset

Namespace

Drupal\Tests\Core\Asset

Code

public function providerTestCssAssert() {
    return [
        'css_bad_category' => [
            'css_bad_category',
            'See https://www.drupal.org/node/2274843.',
        ],
        'Improper CSS nesting' => [
            'css_bad_nesting',
            'CSS must be nested under a category. See https://www.drupal.org/node/2274843.',
        ],
        'Improper CSS nesting array' => [
            'css_bad_nesting_array',
            'CSS files should be specified as key/value pairs, where the values are configuration options. See https://www.drupal.org/node/2274843.',
        ],
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.