public function InstallerExistingSettingsTest::testInstaller in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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\InstallerCode
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.');
}