comparison core/modules/system/src/Tests/Installer/DistributionProfileTest.php @ 12:7a779792577d

Update Drupal core to v8.4.5 (via Composer)
author Chris Cannam
date Fri, 23 Feb 2018 15:52:07 +0000
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
11:bfffd8d7479a 12:7a779792577d
44 * {@inheritdoc} 44 * {@inheritdoc}
45 */ 45 */
46 protected function setUpLanguage() { 46 protected function setUpLanguage() {
47 // Verify that the distribution name appears. 47 // Verify that the distribution name appears.
48 $this->assertRaw($this->info['distribution']['name']); 48 $this->assertRaw($this->info['distribution']['name']);
49 // Verify that the distribution name is used in the site title.
50 $this->assertTitle('Choose language | ' . $this->info['distribution']['name']);
49 // Verify that the requested theme is used. 51 // Verify that the requested theme is used.
50 $this->assertRaw($this->info['distribution']['install']['theme']); 52 $this->assertRaw($this->info['distribution']['install']['theme']);
51 // Verify that the "Choose profile" step does not appear. 53 // Verify that the "Choose profile" step does not appear.
52 $this->assertNoText('profile'); 54 $this->assertNoText('profile');
53 55