Mercurial > hg > cmmr2012-drupal-site
view core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigSyncDirectoryMultilingualTest.php @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | a9cd425dd02b |
children |
line wrap: on
line source
<?php namespace Drupal\FunctionalTests\Installer; /** * Verifies that installing from existing configuration works. * * @group Installer */ class InstallerExistingConfigSyncDirectoryMultilingualTest extends InstallerExistingConfigTestBase { /** * {@inheritdoc} */ protected $profile = 'testing_config_install_multilingual'; /** * {@inheritdoc} */ protected $existingSyncDirectory = TRUE; /** * Installer step: Select installation profile. */ protected function setUpProfile() { // Ensure the site name 'Multilingual' appears as expected in the 'Use // existing configuration' radio description. $this->assertSession()->pageTextContains('Install Multilingual using existing configuration.'); return parent::setUpProfile(); } /** * {@inheritdoc} */ protected function getConfigTarball() { return __DIR__ . '/../../../fixtures/config_install/multilingual.tar.gz'; } /** * Confirms that the installation installed the configuration correctly. */ public function testConfigSync() { parent::testConfigSync(); // Ensure that menu blocks have been created correctly. $this->assertSession()->responseNotContains('This block is broken or missing.'); $this->assertSession()->linkExists('Add content'); } }