Make this test depend on having DeepAbstractSearch installed.
Michael G Schwern [Thu, 13 Mar 2008 19:04:13 +0000 (19:04 +0000)]
t/cdbi-DeepAbstractSearch/01_search.t

index 825b67c..ddc953c 100755 (executable)
@@ -2,9 +2,13 @@ use strict;
 use Test::More;
 
 BEGIN {
-    eval "use DBD::SQLite";
-    plan $@ ? (skip_all => 'needs DBD::SQLite for testing')
-    : (tests => 19);
+    plan skip_all => 'needs DBD::SQLite for testing'
+        unless eval { require DBD::SQLite };
+    
+    plan skip_all => 'needs Class::DBI::Plugin::DeepAbstractSearch'
+        unless eval { require Class::DBI::Plugin::DeepAbstractSearch };
+    
+    plan tests => 19;
 }
 
 my $DB  = "t/testdb";