Issue #2331991 by Gábor Hojtsy, vijaycs85, dawehner: Tests for Theme missing when installing in non-English language.

8.0.x
Nathaniel Catchpole 2014-09-05 12:19:33 +01:00
parent 08b92945d3
commit c08a915d7c
1 changed files with 6 additions and 0 deletions

View File

@ -54,6 +54,12 @@ class InstallerTranslationTest extends InstallerTestBase {
// Ensure that we can enable basic_auth on a non-english site.
$this->drupalPostForm('admin/modules', array('modules[Web services][basic_auth][enable]' => TRUE), t('Save configuration'));
$this->assertResponse(200);
// Assert that the theme CSS was added to the page.
$edit = array('preprocess_css' => FALSE);
$this->drupalPostForm('admin/config/development/performance', $edit, t('Save configuration'));
$this->drupalGet('<front>');
$this->assertRaw('stark/css/layout.css');
}
}