Index: trunk/t/01.t
===================================================================
--- trunk/t/01.t	(revision 43)
+++ 	(revision )
@@ -1,18 +1,0 @@
-#!/usr/bin/perl -w
-use strict;
-
-# Before `make install' is performed this script should be runnable with
-# `make test'. After `make install' it should work as `perl MP3-Find.t'
-
-#########################
-
-# change 'tests => 1' to 'tests => last_test_to_print';
-
-use Test::More tests => 1;
-BEGIN { use_ok('MP3::Find') };
-
-#########################
-
-# Insert your test code below, the Test::More module is use()ed here so read
-# its man page ( perldoc Test::More ) for help writing this test script.
-
Index: trunk/t/02-filesystem.t
===================================================================
--- trunk/t/02-filesystem.t	(revision 43)
+++ 	(revision )
@@ -1,31 +1,0 @@
-#!/usr/bin/perl -w
-use strict;
-
-use Test::More tests => 6;
-BEGIN { use_ok('MP3::Find::Filesystem') };
-
-my $SEARCH_DIR = 't/mp3s';
-my $EXCLUDE_DIR = 't/mp3s/dont_look_here';
-my $MP3_COUNT = 1;
-my $EXCLUDED_MP3_COUNT = 1;
-
-# exercise the object
-
-my $finder = MP3::Find::Filesystem->new;
-isa_ok($finder, 'MP3::Find::Filesystem');
-
-# a most basic search:
-my @res = $finder->find_mp3s(dir => $SEARCH_DIR);
-is(scalar(@res), $MP3_COUNT, 'dir as scalar');
-
-@res = $finder->find_mp3s(dir => [$SEARCH_DIR]);
-is(scalar(@res), $MP3_COUNT, 'dir as ARRAY ref');
-
-# exclude
-@res = $finder->find_mp3s(dir => $SEARCH_DIR, exclude_path => $EXCLUDE_DIR);
-is(scalar(@res), $MP3_COUNT - $EXCLUDED_MP3_COUNT, 'excluded directory');
-
-@res = $finder->find_mp3s(dir => $SEARCH_DIR, exclude_path => [$EXCLUDE_DIR]);
-is(scalar(@res), $MP3_COUNT - $EXCLUDED_MP3_COUNT, 'excluded directory as array');
-
-#TODO: get some test mp3s
Index: trunk/t/03-db.t
===================================================================
--- trunk/t/03-db.t	(revision 43)
+++ 	(revision )
@@ -1,50 +1,0 @@
-#!/usr/bin/perl -w
-use strict;
-
-use Test::More;
-
-BEGIN {
-    eval { require DBI };
-    plan skip_all => 'DBI required to use MP3::Find::DB backend' if $@;
-    eval { require DBD::SQLite };
-    plan skip_all => 'DBD::SQLite required to use MP3::Find::DB backend' if $@;
-    eval { require SQL::Abstract };
-    plan skip_all => 'SQL::Abstract required to use MP3::Find::DB backend' if $@;
-
-    plan tests => 8;
-    use_ok('MP3::Find::DB') 
-};
-
-my $SEARCH_DIR = 't/mp3s';
-my $DB_FILE = 't/mp3.db';
-my $MP3_COUNT = 1;
-
-# exercise the object
-
-my $finder = MP3::Find::DB->new(
-    status_callback => sub {},  # be quiet about updates
-);
-isa_ok($finder, 'MP3::Find::DB');
-
-eval { $finder->create_db()  };
-ok($@, 'create_db dies when not given a database name');
-eval { $finder->update_db()  };
-ok($@, 'update_db dies when not given a database name');
-eval { $finder->destroy_db() };
-ok($@, 'destroy_db dies when not given a database name');
-
-
-# create a test db
-unlink $DB_FILE;
-$finder->create_db($DB_FILE);
-ok(-e $DB_FILE, 'db file is there');
-
-my $count = $finder->update_db($DB_FILE, $SEARCH_DIR);
-is($count, $MP3_COUNT, 'added all the mp3s to the db');
-
-# remove the db
-$finder->destroy_db($DB_FILE);
-ok(!-e $DB_FILE, 'db file is gone');
-
-#TODO: get some test mp3s
-#TODO: write a set of common set of test querys and counts for all the backends
Index: trunk/t/04-new-db.t
===================================================================
--- trunk/t/04-new-db.t	(revision 43)
+++ 	(revision )
@@ -1,52 +1,0 @@
-#!/usr/bin/perl -w
-use strict;
-
-use Test::More;
-
-BEGIN {
-    eval { require DBI };
-    plan skip_all => 'DBI required to use MP3::Find::DB backend' if $@;
-    eval { require DBD::SQLite };
-    plan skip_all => 'DBD::SQLite required to use MP3::Find::DB backend' if $@;
-    eval { require SQL::Abstract };
-    plan skip_all => 'SQL::Abstract required to use MP3::Find::DB backend' if $@;
-
-    plan tests => 8;
-    use_ok('MP3::Find::DB') 
-};
-
-my $SEARCH_DIR = 't/mp3s';
-my $DB_FILE = 't/mp3.db';
-my $DSN = "dbi:SQLite:dbname=$DB_FILE";
-my $MP3_COUNT = 1;
-
-# exercise the object using the new methods ("create", "update", "sync")
-
-my $finder = MP3::Find::DB->new(
-    status_callback => sub {},  # be quiet about updates
-);
-isa_ok($finder, 'MP3::Find::DB');
-
-eval { $finder->create  };
-ok($@, 'create dies when not given a database name');
-eval { $finder->update  };
-ok($@, 'update dies when not given a database name');
-
-
-# create a test db
-unlink $DB_FILE;
-$finder->create({ dsn => $DSN });
-ok(-e $DB_FILE, 'db file is there');
-
-my $count = $finder->update({ dsn => $DSN, dirs => $SEARCH_DIR });
-is($count, $MP3_COUNT, 'added all the mp3s to the db');
-
-$count = $finder->sync({ dsn => $DSN });
-is($count, 0, 'sync works properly');
-
-# remove the db
-$finder->destroy_db($DB_FILE);
-ok(!-e $DB_FILE, 'db file is gone');
-
-#TODO: get some test mp3s
-#TODO: write a set of common set of test querys and counts for all the backends
Index: trunk/t/MP3-Find.t
===================================================================
--- trunk/t/MP3-Find.t	(revision 1)
+++ trunk/t/MP3-Find.t	(revision 1)
@@ -0,0 +1,18 @@
+#!/usr/bin/perl -w
+use strict;
+
+# Before `make install' is performed this script should be runnable with
+# `make test'. After `make install' it should work as `perl MP3-Find.t'
+
+#########################
+
+# change 'tests => 1' to 'tests => last_test_to_print';
+
+use Test::More tests => 1;
+BEGIN { use_ok('MP3::Find') };
+
+#########################
+
+# Insert your test code below, the Test::More module is use()ed here so read
+# its man page ( perldoc Test::More ) for help writing this test script.
+
