From e1d8b2017dbd9ef003ffef3f925a4e5409ffb227 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Tue, 28 Jul 2015 16:26:55 +0100 Subject: [PATCH] Issue #2534038 by mikeryan: Move module-specific migration support into the update module --- .../migration_templates/d6_update_settings.yml | 0 .../src/Tests/Migrate}/d6/MigrateUpdateConfigsTest.php | 7 ++++--- 2 files changed, 4 insertions(+), 3 deletions(-) rename core/modules/{migrate_drupal => update}/migration_templates/d6_update_settings.yml (100%) rename core/modules/{migrate_drupal/src/Tests => update/src/Tests/Migrate}/d6/MigrateUpdateConfigsTest.php (86%) diff --git a/core/modules/migrate_drupal/migration_templates/d6_update_settings.yml b/core/modules/update/migration_templates/d6_update_settings.yml similarity index 100% rename from core/modules/migrate_drupal/migration_templates/d6_update_settings.yml rename to core/modules/update/migration_templates/d6_update_settings.yml diff --git a/core/modules/migrate_drupal/src/Tests/d6/MigrateUpdateConfigsTest.php b/core/modules/update/src/Tests/Migrate/d6/MigrateUpdateConfigsTest.php similarity index 86% rename from core/modules/migrate_drupal/src/Tests/d6/MigrateUpdateConfigsTest.php rename to core/modules/update/src/Tests/Migrate/d6/MigrateUpdateConfigsTest.php index b3235ffbd5..9cea4fc501 100644 --- a/core/modules/migrate_drupal/src/Tests/d6/MigrateUpdateConfigsTest.php +++ b/core/modules/update/src/Tests/Migrate/d6/MigrateUpdateConfigsTest.php @@ -2,17 +2,18 @@ /** * @file - * Contains \Drupal\migrate_drupal\Tests\d6\MigrateUpdateConfigsTest. + * Contains \Drupal\update\Tests\Migrate\d6\MigrateUpdateConfigsTest. */ -namespace Drupal\migrate_drupal\Tests\d6; +namespace Drupal\update\Tests\Migrate\d6; use Drupal\config\Tests\SchemaCheckTestTrait; +use Drupal\migrate_drupal\Tests\d6\MigrateDrupal6TestBase; /** * Upgrade variables to update.settings.yml. * - * @group migrate_drupal + * @group update */ class MigrateUpdateConfigsTest extends MigrateDrupal6TestBase { -- GitLab