class LocaleLibraryAlterTest
Tests localization of the JavaScript libraries.
Currently, only the jQuery datepicker is localized using Drupal translations.
@group locale
Hierarchy
- class \Drupal\KernelTests\KernelTestBase implements \Drupal\Core\DependencyInjection\ServiceProviderInterface uses \Drupal\KernelTests\AssertLegacyTrait, \Drupal\KernelTests\AssertContentTrait, \Drupal\Tests\AssertHelperTrait, \Drupal\Tests\RandomGeneratorTrait, \Drupal\Tests\ConfigTestTrait, \Drupal\Tests\TestRequirementsTrait, \Drupal\Tests\PhpunitCompatibilityTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\Tests\locale\Kernel\LocaleLibraryAlterTest extends \Drupal\KernelTests\KernelTestBase
Expanded class hierarchy of LocaleLibraryAlterTest
File
-
core/
modules/ locale/ tests/ src/ Kernel/ LocaleLibraryAlterTest.php, line 15
Namespace
Drupal\Tests\locale\KernelView source
class LocaleLibraryAlterTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'locale',
];
/**
* Verifies that the datepicker can be localized.
*
* @see locale_library_alter()
*/
public function testLibraryAlter() {
$this->installSchema('locale', [
'locales_location',
'locales_source',
]);
$assets = new AttachedAssets();
$assets->setLibraries([
'core/jquery.ui.datepicker',
]);
$js_assets = $this->container
->get('asset.resolver')
->getJsAssets($assets, FALSE)[1];
$this->assertArrayHasKey('core/modules/locale/locale.datepicker.js', $js_assets);
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
LocaleLibraryAlterTest::$modules | protected static | property | |
LocaleLibraryAlterTest::testLibraryAlter | public | function | Verifies that the datepicker can be localized. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.