Sketches of tests that should ultimately pass
[dbsrgits/DBIx-Class.git] / t / 54taint.t
index f54ed93..c3df11f 100644 (file)
@@ -6,17 +6,7 @@ use strict;
 use warnings;
 
 use Test::More;
-
-BEGIN {
-  eval "require Module::Find;";
-  if ($@) {
-    plan skip_all => 'Could not load Module::Find';
-    exit;
-  }
-  else {
-    plan tests => 7;
-  }
-}
+BEGIN { plan tests => 7 }
 
 package DBICTest::Taint::Classes;
 
@@ -52,5 +42,4 @@ lives_ok (sub {
   ok( __PACKAGE__->source('Test'), 'The Namespaces::Test source has been registered' );
 }, 'Loading classes with Module::Find/load_namespaces worked in taint mode' );
 
-
 1;