Issue #2916199 by quietone, heddn: MigrateUpgradeTestBase shouldn't enable modules

8.5.x
Gabor Hojtsy 2018-01-11 16:45:21 +01:00
parent 848e20e3b2
commit 1d2289547c
3 changed files with 32 additions and 19 deletions

View File

@ -30,23 +30,6 @@ abstract class MigrateUpgradeTestBase extends BrowserTestBase {
*/
protected $sourceDatabase;
/**
* Modules to enable.
*
* @var array
*/
public static $modules = [
'language',
'content_translation',
'migrate_drupal_ui',
'telephone',
'aggregator',
'book',
'forum',
'statistics',
'migration_provider_test',
];
/**
* {@inheritdoc}
*/

View File

@ -14,6 +14,23 @@ use Drupal\user\Entity\User;
*/
class MigrateUpgrade6Test extends MigrateUpgradeTestBase {
/**
* Modules to enable.
*
* @var array
*/
public static $modules = [
'language',
'content_translation',
'migrate_drupal_ui',
'telephone',
'aggregator',
'book',
'forum',
'statistics',
'migration_provider_test',
];
/**
* {@inheritdoc}
*/

View File

@ -15,9 +15,22 @@ use Drupal\user\Entity\User;
class MigrateUpgrade7Test extends MigrateUpgradeTestBase {
/**
* {@inheritdoc}
* Modules to enable.
*
* @var array
*/
public static $modules = ['file'];
public static $modules = [
'file',
'language',
'content_translation',
'migrate_drupal_ui',
'telephone',
'aggregator',
'book',
'forum',
'statistics',
'migration_provider_test',
];
/**
* {@inheritdoc}