Massive cleanup of DateTime test dependencies, other interim
[dbsrgits/DBIx-Class.git] / t / cdbi / mk_group_accessors.t
index 7c5ce67..f7d4580 100644 (file)
@@ -4,11 +4,6 @@ use Test::More;
 BEGIN {
     eval "use DBIx::Class::CDBICompat;";
     plan skip_all => 'Class::Trigger and DBIx::ContextualFetch required' if $@;
-
-    eval "use DBD::SQLite";
-    plan skip_all => 'needs DBD::SQLite for testing' if $@;
-
-    plan 'no_plan';
 }
 
 INIT {
@@ -67,3 +62,5 @@ sub Film::mutator_name_for {
     $film->wibble_thing(23);
     is $film->wibble_thing, 23;
 }
+
+done_testing;