comparison core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigTest.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents
children
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
1 <?php
2
3 namespace Drupal\FunctionalTests\Installer;
4
5 /**
6 * Verifies that installing from existing configuration works.
7 *
8 * @group Installer
9 */
10 class InstallerExistingConfigTest extends InstallerExistingConfigTestBase {
11
12 /**
13 * {@inheritdoc}
14 */
15 public function setUpSite() {
16 // The configuration is from a site installed in French.
17 // So after selecting the profile the installer detects that the site must
18 // be installed in French, thus we change the button translation.
19 $this->translations['Save and continue'] = 'Enregistrer et continuer';
20 parent::setUpSite();
21 }
22
23 /**
24 * {@inheritdoc}
25 */
26 protected function getConfigTarball() {
27 return __DIR__ . '/../../../fixtures/config_install/testing_config_install.tar.gz';
28 }
29
30 }