public function LibraryDiscoveryParserTest::providerTestCssAssert in Drupal 8
Same name and namespace in other branches
- 9 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 581 - Contains \Drupal\Tests\Core\Asset\LibraryDiscoveryParserTest.
Class
- LibraryDiscoveryParserTest
- @coversDefaultClass \Drupal\Core\Asset\LibraryDiscoveryParser @group Asset
Namespace
Drupal\Tests\Core\AssetCode
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.',
],
];
}