Index: /trunk/MANIFEST
===================================================================
--- /trunk/MANIFEST	(revision 7)
+++ /trunk/MANIFEST	(revision 8)
@@ -3,5 +3,7 @@
 MANIFEST
 README
-t/MP3-Find.t
+t/01.t
+t/02-filesystem.t
+t/mp3s/not-an-mp3
 lib/MP3/Find.pm
 lib/MP3/Find/Base.pm
Index: /trunk/t/01.t
===================================================================
--- /trunk/t/01.t	(revision 8)
+++ /trunk/t/01.t	(revision 8)
@@ -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.
+
Index: /trunk/t/02-filesystem.t
===================================================================
--- /trunk/t/02-filesystem.t	(revision 8)
+++ /trunk/t/02-filesystem.t	(revision 8)
@@ -0,0 +1,22 @@
+#!/usr/bin/perl -w
+use strict;
+
+use Test::More 'no_plan'; #tests => 4;
+BEGIN { use_ok('MP3::Find::Filesystem') };
+
+my $SEARCH_DIR = 't/mp3s';
+my $MP3_COUNT = 0;
+
+# 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');
+
+#TODO: get some test mp3s
Index: unk/t/MP3-Find.t
===================================================================
--- /trunk/t/MP3-Find.t	(revision 7)
+++ 	(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.
-
