Index: wp-testdata/sample_blogs.php
===================================================================
--- wp-testdata/sample_blogs.php	(revision 46)
+++ wp-testdata/sample_blogs.php	(revision 108)
@@ -59,3 +59,20 @@
 }
 
+// a faster way to get the asdftestblog1 dataset than using the importer
+class _WPDataset1 extends _WPEmptyBlog {
+	
+	function setUp() {
+		parent::setUp();
+		
+		global $wpdb;
+		
+		// crude but effective: make sure there's no residual data in the main tables
+		foreach ( array('posts', 'postmeta', 'comments', 'terms', 'term_taxonomy', 'term_relationships', 'users', 'usermeta') as $table)
+			$wpdb->query("DELETE FROM {$wpdb->$table}");
+			
+		$this->_load_sql_dump(DIR_TESTDATA.'/export/asdftestblog1.2007-11-23.sql');
+	}
+	
+}
+
 ?>
