Disable reconnect test except fpor when AUTHORS is set
Peter Rabbitson [Mon, 9 Mar 2009 12:22:54 +0000 (12:22 +0000)]
t/33storage_reconnect.t

index 993cfad..5684134 100644 (file)
@@ -7,7 +7,14 @@ use Test::More;
 use lib qw(t/lib);
 use DBICTest;
 
-plan tests => 6;
+{
+  no warnings qw/once/;
+  require inc::Module::Install;
+  plan $Module::Install::AUTHOR 
+    ? (tests => 6) 
+    : (skip_all => 'Test temporarily disabled due to a widespread buggy SQLite version')
+  ;
+}
 
 my $db_orig = "$FindBin::Bin/var/DBIxClass.db";
 my $db_tmp  = "$db_orig.tmp";