Update to Drupal 8.0.0 beta 14. For more information, see https://drupal.org/node/2544542
This commit is contained in:
parent
3b2511d96d
commit
81ccda77eb
2155 changed files with 54307 additions and 46870 deletions
|
@ -152,6 +152,11 @@ class StandardTest extends WebTestBase {
|
|||
$this->adminUser->save();
|
||||
$this->drupalGet('node/add');
|
||||
$this->assertResponse(200);
|
||||
|
||||
// Ensure that there are no pending updates after installation.
|
||||
$this->drupalLogin($this->rootUser);
|
||||
$this->drupalGet('update.php/selection');
|
||||
$this->assertText('No pending updates.');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -16,12 +16,6 @@ use Drupal\user\RoleInterface;
|
|||
* @see system_install()
|
||||
*/
|
||||
function standard_install() {
|
||||
// Now that all modules are installed, make sure the entity storage and other
|
||||
// handlers are up to date with the current entity and field definitions. For
|
||||
// example, Path module adds a base field to nodes and taxonomy terms after
|
||||
// those modules are already installed.
|
||||
\Drupal::service('entity.definition_update_manager')->applyUpdates();
|
||||
|
||||
// Set front page to "node".
|
||||
\Drupal::configFactory()->getEditable('system.site')->set('page.front', '/node')->save(TRUE);
|
||||
|
||||
|
|
Reference in a new issue