kill deprecated options/methods, make relationship loading the default
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 10sqlite_common.t
index 7208977..7899cf6 100644 (file)
@@ -1,18 +1,17 @@
 use strict;
-use lib qw( ./t );
-use dbixcl_common_tests;
+use lib qw(t/lib);
+use dbixcsl_common_tests;
 
 eval { require DBD::SQLite };
 my $class = $@ ? 'SQLite2' : 'SQLite';
 
 {
-    my $tester = dbixcl_common_tests->new(
+    my $tester = dbixcsl_common_tests->new(
         vendor          => 'SQLite',
         auto_inc_pk     => 'INTEGER NOT NULL PRIMARY KEY',
         dsn             => "dbi:$class:dbname=./t/sqlite_test",
         user            => '',
         password        => '',
-        multi_fk_broken => 1,
     );
 
     $tester->run_tests();