--- modules/node/node.test	2010-02-19 14:01:04.000000000 -0500
+++ modules/node/node.test	2010-02-19 14:55:26.000000000 -0500
@@ -1233,6 +1233,7 @@ class NodeTitleTestCase extends DrupalWe
     // Create "Basic page" content with title
     $settings = array(
       'title' => $this->randomName(8),
+      'promote' => 1, //Add the node to the frontpage so we can test if teaser links are clickable
     );
     $node = $this->drupalCreateNode($settings);
 
@@ -1249,7 +1250,12 @@ class NodeTitleTestCase extends DrupalWe
     // Test node title in comment preview.
     $xpath = '//div[@id="node-'. $node->nid .'"]/h2/a';
     $this->assertEqual(current($this->xpath($xpath)), $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);
   }
+  
 }
 
 /**
