Trailing WS crusade - got to save them bits
[dbsrgits/DBIx-Class.git] / t / cdbi / 11-triggers.t
index 918403a..9c3bc07 100644 (file)
@@ -7,8 +7,7 @@ BEGIN {
     plan (skip_all => 'Class::Trigger and DBIx::ContextualFetch required');
     next;
   }
-  eval "use DBD::SQLite";
-  plan $@ ? (skip_all => 'needs DBD::SQLite for testing') : (tests => 13);
+  plan tests => 13;
 }
 
 use lib 't/cdbi/testlib';
@@ -58,7 +57,7 @@ is + (
 ok $ver->delete, "Delete";
 
 {
-  Film->add_trigger(before_create => sub { 
+  Film->add_trigger(before_create => sub {
     my $self = shift;
     ok !$self->_attribute_exists('title'), "PK doesn't auto-vivify";
   });