? .DS_Store
? simpletest
? simpletest_upload_tests.patch
? tmp.patch
? tracker_tests.patch
? tests/.DS_Store
? tests/functional/.DS_Store
Index: drupal_test_case.php
===================================================================
RCS file: /cvs/drupal/contributions/modules/simpletest/drupal_test_case.php,v
retrieving revision 1.78
diff -u -p -r1.78 drupal_test_case.php
--- drupal_test_case.php	30 Mar 2008 21:43:29 -0000	1.78
+++ drupal_test_case.php	1 Apr 2008 16:21:17 -0000
@@ -85,6 +85,22 @@ class DrupalTestCase extends UnitTestCas
   }
 
   /**
+   * Creates many nodes
+   * 
+   *  @param $count
+   *    The number of nodes to create
+   * @param $settings
+   *   The settings to pass in to drupalCreateNode
+   */
+  function drupalCreateNodes($count = 4, $settings = array()) {
+    $nodes = array();
+    for ($i = 0; $i < $count; $i++) {
+      $nodes[] = $this->drupalCreateNode($settings);
+    }
+    return $nodes;
+  }
+
+  /**
    * Creates a custom content type based on default settings.
    *
    * @param settings
