You are here

ShortcutSetTest.php in Drupal 8

File

core/modules/shortcut/tests/src/Kernel/Plugin/migrate/source/d7/ShortcutSetTest.php
View source
<?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;
  }

}

Classes

Namesort descending Description
ShortcutSetTest Tests D7 ShortcutSet source plugin.