Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / metatag / src / Tests / WithRedirect.php
diff --git a/web/modules/contrib/metatag/src/Tests/WithRedirect.php b/web/modules/contrib/metatag/src/Tests/WithRedirect.php
new file mode 100644 (file)
index 0000000..72c0833
--- /dev/null
@@ -0,0 +1,37 @@
+<?php
+
+namespace Drupal\metatag\Tests;
+
+/**
+ * Tests the Metatag administration when Redirect is installed.
+ *
+ * @group metatag
+ */
+class WithRedirect extends MetatagAdminTest {
+
+  /**
+   * {@inheritdoc}
+   */
+  public static $modules = [
+    'node',
+    'field_ui',
+    'test_page_test',
+    'token',
+    'metatag',
+
+    // @see testAvailableConfigEntities
+    'block',
+    'block_content',
+    'comment',
+    'contact',
+    'menu_link_content',
+    'menu_ui',
+    'shortcut',
+    'taxonomy',
+    'entity_test',
+
+    // The whole point of this test.
+    'redirect',
+  ];
+
+}