diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/simpletest/tests/theme.test | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/modules/simpletest/tests/theme.test b/modules/simpletest/tests/theme.test index 823a50c67..9b5c5c2d2 100644 --- a/modules/simpletest/tests/theme.test +++ b/modules/simpletest/tests/theme.test @@ -50,23 +50,6 @@ class TemplateUnitTest extends DrupalWebTestCase { $suggestions = array("page\0"); $this->assertEqual(drupal_discover_template(array('themes/garland'), $suggestions), 'themes/garland/page.tpl.php', t('Unsafe template suggestion fixed')); } - - /** - * Test that not-found theme hook throw a proper exception. - */ - function testThemeHookNotFound() { - try { - theme('this_does_not_exist'); - - $this->fail(t('Exception not thrown for invalid theme hook.')); - } - catch (ThemeHookNotFoundException $e) { - $this->assertEqual($e->getMessage(), t('Theme hook "this_does_not_exist" not found.'), t('Correct exception thrown with correct error message.')); - } - catch (Exception $e) { - $this->fail(t('Exception of type "@type" thrown instead of ThemeHookNotFoundException.', array('@type' => gettype($e)))); - } - } } /** |