Issue #2380605 by emma.maria, lauriii: Bartik layout broken

8.0.x
Alex Pott 2014-11-23 19:46:40 +00:00
parent bbb4de91bc
commit bdafa44dbd
3 changed files with 9 additions and 5 deletions

View File

@ -99,13 +99,13 @@ class ThemeInfoTest extends WebTestBase {
$active_theme = $this->themeManager->getActiveTheme();
// Make sure we are not testing the wrong theme.
$this->assertEqual('test_theme', $active_theme->getName());
$this->assertEqual([], $active_theme->getLibraries());
$this->assertEqual(['classy/base'], $active_theme->getLibraries());
// @see theme_test_system_info_alter()
$this->state->set('theme_test.modify_info_files', TRUE);
drupal_flush_all_caches();
$active_theme = $this->themeManager->getActiveTheme();
$this->assertEqual(['core/backbone'], $active_theme->getLibraries());
$this->assertEqual(['classy/base', 'core/backbone'], $active_theme->getLibraries());
}
}

View File

@ -5,6 +5,5 @@ package: Core
version: VERSION
core: 8.x
stylesheets:
all:
- css/layout.css
libraries:
- classy/base

View File

@ -0,0 +1,5 @@
base:
version: VERSION
css:
theme:
css/layout.css: {}