Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / system / src / Tests / Page / DefaultMetatagsTest.php
diff --git a/web/core/modules/system/src/Tests/Page/DefaultMetatagsTest.php b/web/core/modules/system/src/Tests/Page/DefaultMetatagsTest.php
deleted file mode 100644 (file)
index e0228ef..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-
-namespace Drupal\system\Tests\Page;
-
-use Drupal\simpletest\WebTestBase;
-
-/**
- * Tests default HTML metatags on a page.
- *
- * @group Page
- */
-class DefaultMetatagsTest extends WebTestBase {
-
-  /**
-   * Tests meta tags.
-   */
-  public function testMetaTag() {
-    $this->drupalGet('');
-    // Ensures that the charset metatag is on the page.
-    $result = $this->xpath('//meta[@charset="utf-8"]');
-    $this->assertEqual(count($result), 1);
-
-    // Ensure that the charset one is the first metatag.
-    $result = $this->xpath('//meta');
-    $this->assertEqual((string) $result[0]->attributes()->charset, 'utf-8');
-
-    // Ensure that the shortcut icon is on the page.
-    $result = $this->xpath('//link[@rel = "shortcut icon"]');
-    $this->assertEqual(count($result), 1, 'The shortcut icon is present.');
-  }
-
-}