Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / system / src / Tests / Theme / HtmlAttributesTest.php
diff --git a/web/core/modules/system/src/Tests/Theme/HtmlAttributesTest.php b/web/core/modules/system/src/Tests/Theme/HtmlAttributesTest.php
deleted file mode 100644 (file)
index b2018c7..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-
-namespace Drupal\system\Tests\Theme;
-
-use Drupal\simpletest\WebTestBase;
-
-/**
- * Tests attributes inserted in the 'html' and 'body' elements on the page.
- *
- * @group Theme
- */
-class HtmlAttributesTest extends WebTestBase {
-
-  /**
-   * Modules to enable.
-   *
-   * @var array
-   */
-  public static $modules = ['theme_test'];
-
-  /**
-   * Tests that attributes in the 'html' and 'body' elements can be altered.
-   */
-  public function testThemeHtmlAttributes() {
-    $this->drupalGet('');
-    $attributes = $this->xpath('/html[@theme_test_html_attribute="theme test html attribute value"]');
-    $this->assertTrue(count($attributes) == 1, "Attribute set in the 'html' element via hook_preprocess_HOOK() found.");
-    $attributes = $this->xpath('/html/body[@theme_test_body_attribute="theme test body attribute value"]');
-    $this->assertTrue(count($attributes) == 1, "Attribute set in the 'body' element via hook_preprocess_HOOK() found.");
-  }
-
-}