From c08a915d7c97572d81e4ca6c47300dffbb20f14d Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole Date: Fri, 5 Sep 2014 12:19:33 +0100 Subject: [PATCH] =?UTF-8?q?Issue=20#2331991=20by=20G=C3=A1bor=20Hojtsy,=20?= =?UTF-8?q?vijaycs85,=20dawehner:=20Tests=20for=20Theme=20missing=20when?= =?UTF-8?q?=20installing=20in=20non-English=20language.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/src/Tests/Installer/InstallerTranslationTest.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/modules/system/src/Tests/Installer/InstallerTranslationTest.php b/core/modules/system/src/Tests/Installer/InstallerTranslationTest.php index 5a24f2771455..1ab8e5a0fa4d 100644 --- a/core/modules/system/src/Tests/Installer/InstallerTranslationTest.php +++ b/core/modules/system/src/Tests/Installer/InstallerTranslationTest.php @@ -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(''); + $this->assertRaw('stark/css/layout.css'); } }