From 76fe77cc22bf0acd15ed995068acdbabe8458724 Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Sat, 28 Jun 2008 19:19:08 +0000 Subject: [PATCH] - Patch #275092 by kbahey: added test for meta-tag generator patch. --- modules/system/system.test | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/modules/system/system.test b/modules/system/system.test index 92f8a0a86cff..abd01f8c5fa3 100644 --- a/modules/system/system.test +++ b/modules/system/system.test @@ -295,3 +295,26 @@ class AdminOverviewTestCase extends DrupalWebTestCase { } } } + +class AdminMetaTagTestCase extends DrupalWebTestCase { + /** + * Implementation of getInfo(). + */ + function getInfo() { + return array( + 'name' => t('Fingerprinting meta tag'), + 'description' => t('Confirm that the fingerprinting meta tag appears as expected.'), + 'group' => t('System') + ); + } + + /** + * Verify that the meta tag HTML is generated correctly. + */ + public function testMetaTag() { + list($version,) = explode('.', VERSION); + $string = '<meta name="Generator" content="Drupal ' . $version. ' (http://drupal.org)" />'; + $this->drupalGet('node'); + $this->assertRaw($string, t('Fingerprinting meta tag generated correctly.'), t('System')); + } +} -- GitLab