| 7 menu.test | MenuRouterTestCase::testThemeCallbackFakeTheme() |
| 8 menu.test | MenuRouterTestCase::testThemeCallbackFakeTheme() |
Test the theme callback when it is set to use a theme that does not exist.
File
- modules/
simpletest/ tests/ menu.test, line 273 - Provides SimpleTests for menu.inc.
Code
function testThemeCallbackFakeTheme() {
$this->drupalGet('menu-test/theme-callback/use-fake-theme');
$this->assertText('Custom theme: NONE. Actual theme: bartik.', t('The theme callback system falls back on the default theme when a theme that does not exist is requested.'));
$this->assertRaw('bartik/css/style.css', t("The default theme's CSS appears on the page."));
}
Login or register to post comments