Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / locale / src / Tests / LocaleLibraryAlterTest.php
diff --git a/web/core/modules/locale/src/Tests/LocaleLibraryAlterTest.php b/web/core/modules/locale/src/Tests/LocaleLibraryAlterTest.php
deleted file mode 100644 (file)
index 68996f4..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-
-namespace Drupal\locale\Tests;
-
-use Drupal\Core\Asset\AttachedAssets;
-use Drupal\simpletest\WebTestBase;
-
-/**
- * Tests localization of the JavaScript libraries.
- *
- * Currently, only the jQuery datepicker is localized using Drupal translations.
- *
- * @group locale
- */
-class LocaleLibraryAlterTest extends WebTestBase {
-
-  /**
-   * Modules to enable.
-   *
-   * @var array
-   */
-  public static $modules = ['locale'];
-
-  /**
-   * Verifies that the datepicker can be localized.
-   *
-   * @see locale_library_alter()
-   */
-  public function testLibraryAlter() {
-    $assets = new AttachedAssets();
-    $assets->setLibraries(['core/jquery.ui.datepicker']);
-    $js_assets = $this->container->get('asset.resolver')->getJsAssets($assets, FALSE)[1];
-    $this->assertTrue(array_key_exists('core/modules/locale/locale.datepicker.js', $js_assets), 'locale.datepicker.js added to scripts.');
-  }
-
-}