Update to Drupal 8.0.2. For more information, see https://www.drupal.org/drupal-8.0.2-release-notes

This commit is contained in:
Pantheon Automation 2016-01-06 16:31:26 -08:00 committed by Greg Anderson
parent 1a0e9d9fac
commit a6b049dd05
538 changed files with 5247 additions and 1594 deletions

View file

@ -23,4 +23,4 @@ destination:
migration_dependencies:
required:
- d7_shortcut_set
- d7_menu_links
- menu_links

View file

@ -38,9 +38,10 @@ class MigrateShortcutSetTest extends MigrateDrupal7TestBase {
$this->installSchema('system', array('router'));
$this->installEntitySchema('shortcut');
$this->installEntitySchema('menu_link_content');
\Drupal::service('router.builder')->rebuild();
$this->executeMigration('d7_shortcut_set');
$this->executeMigration('menu');
$this->executeMigration('d7_menu_links');
$this->executeMigration('menu_links');
$this->executeMigration('d7_shortcut');
}

View file

@ -38,11 +38,12 @@ class MigrateShortcutSetUsersTest extends MigrateDrupal7TestBase {
$this->installEntitySchema('shortcut');
$this->installEntitySchema('menu_link_content');
$this->installSchema('shortcut', ['shortcut_set_users']);
\Drupal::service('router.builder')->rebuild();
$this->executeMigration('d7_user_role');
$this->executeMigration('d7_user');
$this->executeMigration('d7_shortcut_set');
$this->executeMigration('menu');
$this->executeMigration('d7_menu_links');
$this->executeMigration('menu_links');
$this->executeMigration('d7_shortcut');
$this->executeMigration('d7_shortcut_set_users');
}

View file

@ -38,9 +38,10 @@ class MigrateShortcutTest extends MigrateDrupal7TestBase {
$this->installSchema('system', array('router'));
$this->installEntitySchema('shortcut');
$this->installEntitySchema('menu_link_content');
\Drupal::service('router.builder')->rebuild();
$this->executeMigration('d7_shortcut_set');
$this->executeMigration('menu');
$this->executeMigration('d7_menu_links');
$this->executeMigration('menu_links');
$this->executeMigration('d7_shortcut');
}

View file

@ -54,7 +54,7 @@ class ShortcutLinksTest extends ShortcutTestBase {
'/admin',
'/admin/config/system/site-information',
'/node/' . $this->node->id() . '/edit',
'/' . $path['alias'],
$path['alias'],
'/router_test/test2',
'/router_test/test3/value',
];