comparison core/modules/system/src/Tests/Installer/StandardInstallerTest.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
16 16
17 /** 17 /**
18 * Ensures that the user page is available after installation. 18 * Ensures that the user page is available after installation.
19 */ 19 */
20 public function testInstaller() { 20 public function testInstaller() {
21 // Verify that the confirmation message appears. 21 // Verify that the Standard install profile's default frontpage appears.
22 require_once \Drupal::root() . '/core/includes/install.inc'; 22 $this->assertRaw('No front page content has been created yet.');
23 $this->assertRaw(t('Congratulations, you installed @drupal!', [
24 '@drupal' => drupal_install_profile_distribution_name(),
25 ]));
26 } 23 }
27 24
28 /** 25 /**
29 * {@inheritdoc} 26 * {@inheritdoc}
30 */ 27 */