Trailing WS crusade - got to save them bits
[dbsrgits/DBIx-Class.git] / t / cdbi / 14-might_have.t
index a8c163f..a02f987 100644 (file)
@@ -5,10 +5,8 @@ BEGIN {
   eval "use DBIx::Class::CDBICompat;";
   if ($@) {
     plan (skip_all => 'Class::Trigger and DBIx::ContextualFetch required');
-    next;
   }
-  eval "use DBD::SQLite";
-  plan $@ ? (skip_all => 'needs DBD::SQLite for testing') : (tests => 22);
+  plan tests => 22;
 }
 
 use lib 't/cdbi/testlib';
@@ -64,7 +62,7 @@ Film->create_test_film;
     $blurb = Blurb->retrieve('Bad Taste');
     is $blurb, undef, "Blurb has gone";
   }
-    
+
 }
 
 {