Mercurial > hg > isophonics-drupal-site
annotate core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigTest.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 129ea1e6d783 |
children |
rev | line source |
---|---|
Chris@17 | 1 <?php |
Chris@17 | 2 |
Chris@17 | 3 namespace Drupal\FunctionalTests\Installer; |
Chris@17 | 4 |
Chris@17 | 5 /** |
Chris@17 | 6 * Verifies that installing from existing configuration works. |
Chris@17 | 7 * |
Chris@17 | 8 * @group Installer |
Chris@17 | 9 */ |
Chris@17 | 10 class InstallerExistingConfigTest extends InstallerExistingConfigTestBase { |
Chris@17 | 11 |
Chris@17 | 12 /** |
Chris@17 | 13 * {@inheritdoc} |
Chris@17 | 14 */ |
Chris@17 | 15 public function setUpSite() { |
Chris@17 | 16 // The configuration is from a site installed in French. |
Chris@17 | 17 // So after selecting the profile the installer detects that the site must |
Chris@17 | 18 // be installed in French, thus we change the button translation. |
Chris@17 | 19 $this->translations['Save and continue'] = 'Enregistrer et continuer'; |
Chris@17 | 20 parent::setUpSite(); |
Chris@17 | 21 } |
Chris@17 | 22 |
Chris@17 | 23 /** |
Chris@17 | 24 * {@inheritdoc} |
Chris@17 | 25 */ |
Chris@17 | 26 protected function getConfigTarball() { |
Chris@17 | 27 return __DIR__ . '/../../../fixtures/config_install/testing_config_install.tar.gz'; |
Chris@17 | 28 } |
Chris@17 | 29 |
Chris@17 | 30 } |