You are here

public function InstallerExistingSettingsTest::testInstaller in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/src/Tests/Installer/InstallerExistingSettingsTest.php \Drupal\system\Tests\Installer\InstallerExistingSettingsTest::testInstaller()

Verifies that installation succeeded.

File

core/modules/system/src/Tests/Installer/InstallerExistingSettingsTest.php, line 79
Contains \Drupal\system\Tests\Installer\InstallerExistingSettingsTest.

Class

InstallerExistingSettingsTest
Tests the installer with an existing settings file.

Namespace

Drupal\system\Tests\Installer

Code

public function testInstaller() {
  $this
    ->assertUrl('user/1');
  $this
    ->assertResponse(200);
  $this
    ->assertEqual('testing', drupal_get_profile(), 'Profile was changed from minimal to testing during interactive install.');
}