Add author test for whitespace errors and make whitespace more consistent
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / backcompat / 0.04006 / 10sqlite_common.t
index ea98d92..d8802e3 100644 (file)
@@ -1,25 +1,25 @@
+use DBIx::Class::Schema::Loader::Optional::Dependencies
+    -skip_all_without => 'test_backcompat';
+
 use strict;
+use warnings;
 use lib qw(t/backcompat/0.04006/lib);
 use dbixcsl_common_tests;
+use dbixcsl_test_dir qw/$tdir/;
+
 use Test::More;
-plan skip_all => 'set SCHEMA_LOADER_TESTS_BACKCOMPAT to enable these tests'
-    unless $ENV{SCHEMA_LOADER_TESTS_BACKCOMPAT};
 
 eval { require DBD::SQLite };
 my $class = $@ ? 'SQLite2' : 'SQLite';
 
-{
-    my $tester = dbixcsl_common_tests->new(
+dbixcsl_common_tests->new(
         vendor          => 'SQLite',
         auto_inc_pk     => 'INTEGER NOT NULL PRIMARY KEY',
-        dsn             => "dbi:$class:dbname=./t/sqlite_test",
+        dsn             => "dbi:$class:dbname=$tdir/sqlite_test.db",
         user            => '',
         password        => '',
-    );
-
-    $tester->run_tests();
-}
+)->run_tests;
 
 END {
-    unlink './t/sqlite_test';
+    unlink "$tdir/sqlite_test.db" if $ENV{SCHEMA_LOADER_TESTS_BACKCOMPAT};
 }