Index: modules/system/system.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.test,v
retrieving revision 1.6
diff -u -F^f -r1.6 system.test
--- modules/system/system.test	9 Jun 2008 16:33:20 -0000	1.6
+++ modules/system/system.test	28 Jun 2008 16:26:41 -0000
@@ -295,3 +295,24 @@
     }
   }
 }
+
+class AdminMetaTagTestCase extends DrupalWebTestCase {
+  /**
+   * Implementation of getInfo().
+   */
+  function getInfo() {
+    return array(
+      'name' => t('Admin Meta tag'),
+      'description' => t('Confirm that the admin meta tag appears as expected.'),
+      'group' => t('System')
+    );
+  }
+
+  /**
+   * Verify that the meta tag HTML is generated correctly
+   */
+  public function testMetaTag() {
+    $this->drupalGet('node');
+    $this->assertRaw('<meta name="Generator" content="Drupal 7 (http://drupal.org)" />');
+  }
+}
