summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-06-28 19:19:08 +0000
committerDries Buytaert <dries@buytaert.net>2008-06-28 19:19:08 +0000
commit76fe77cc22bf0acd15ed995068acdbabe8458724 (patch)
tree27d2c4e2228cd835d2ad84fa4347eea6fabdb891 /modules
parent3cdf54fb3e3f37919438d35295c06cb6211c4e83 (diff)
downloadbrdo-76fe77cc22bf0acd15ed995068acdbabe8458724.tar.gz
brdo-76fe77cc22bf0acd15ed995068acdbabe8458724.tar.bz2
- Patch #275092 by kbahey: added test for meta-tag generator patch.
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.test23
1 files changed, 23 insertions, 0 deletions
diff --git a/modules/system/system.test b/modules/system/system.test
index 92f8a0a86..abd01f8c5 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'));
+ }
+}