Index: modules/node/node.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.test,v
retrieving revision 1.81
diff -u -r1.81 node.test
--- modules/node/node.test	20 Apr 2010 09:48:06 -0000	1.81
+++ modules/node/node.test	22 Apr 2010 22:53:36 -0000
@@ -1297,9 +1297,11 @@
    *  Create one node and test if the node title has the correct value.
    */
   function testNodeTitle() {
-    // Create "Basic page" content with title
+    // Create "Basic page" content with title.
+    // Add the node to the frontpage so we can test if teaser links are clickable.
     $settings = array(
       'title' => $this->randomName(8),
+      'promote' => 1,
     );
     $node = $this->drupalCreateNode($settings);
 
@@ -1315,11 +1317,15 @@
 
     // Test node title in comment preview.
     $this->assertEqual(current($this->xpath('//div[@id=:id]/h2/a', array(':id' => 'node-' . $node->nid))), $node->title, 'Node preview title is equal to node title.', 'Node');
+
+    // Test node title is clickable on teaser list (/node).
+    $this->drupalGet('node');
+    $this->clickLink($node->title);
   }
 }
 
 /**
- * Test the node_feed() functionality
+ * Test the node_feed() functionality.
  */
 class NodeFeedTestCase extends DrupalWebTestCase {
   public static function getInfo() {
@@ -1699,7 +1705,7 @@
     );
     $node = $this->drupalCreateNode($settings);
 
-    // Load node so that the body and summary fields are structured properly. 
+    // Load node so that the body and summary fields are structured properly.
     $node = node_load($node->nid);
     $instance = field_info_instance('node', 'body', $node->type);
 
