Version 1
[yaffs-website] / web / core / modules / shortcut / tests / src / Kernel / Plugin / migrate / source / d7 / ShortcutSetTest.php
diff --git a/web/core/modules/shortcut/tests/src/Kernel/Plugin/migrate/source/d7/ShortcutSetTest.php b/web/core/modules/shortcut/tests/src/Kernel/Plugin/migrate/source/d7/ShortcutSetTest.php
new file mode 100644 (file)
index 0000000..e1982de
--- /dev/null
@@ -0,0 +1,41 @@
+<?php
+
+namespace Drupal\Tests\shortcut\Kernel\Plugin\migrate\source\d7;
+
+use Drupal\Tests\migrate\Kernel\MigrateSqlSourceTestBase;
+
+/**
+ * Tests D7 ShortcutSet source plugin.
+ *
+ * @covers Drupal\shortcut\Plugin\migrate\source\d7\ShortcutSet
+ *
+ * @group shortcut
+ */
+class ShortcutSetTest extends MigrateSqlSourceTestBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public static $modules = ['shortcut', 'migrate_drupal'];
+
+  /**
+   * {@inheritdoc}
+   */
+  public function providerSource() {
+    $tests = [];
+
+    // The source data.
+    $tests[0]['source_data']['shortcut_set'] = [
+      [
+        'set_name' => 'shortcut-set-2',
+        'title' => 'Alternative shortcut set',
+      ],
+    ];
+
+    // The expected results are identical to the source data.
+    $tests[0]['expected_data'] = $tests[0]['source_data']['shortcut_set'];
+
+    return $tests;
+  }
+
+}