comparison core/modules/locale/tests/src/Functional/LocaleNonInteractiveDevInstallTest.php @ 16:c2387f117808

Routine composer update
author Chris Cannam
date Tue, 10 Jul 2018 15:07:59 +0100
parents
children
comparison
equal deleted inserted replaced
15:e200cb7efeb3 16:c2387f117808
1 <?php
2
3 namespace Drupal\Tests\locale\Functional;
4
5 /**
6 * Tests installing in a different language with a dev version string.
7 *
8 * @group locale
9 */
10 class LocaleNonInteractiveDevInstallTest extends LocaleNonInteractiveInstallTest {
11
12 /**
13 * {@inheritdoc}
14 */
15 protected function getVersionStringToTest() {
16 include_once $this->root . '/core/includes/install.core.inc';
17 $version = _install_get_version_info(\Drupal::VERSION);
18 return $version['major'] . '.' . $version['minor'] . '.x';
19 }
20
21 }