Fix ordering of 'use lib' and 'use' in tests
[dbsrgits/DBIx-Class.git] / t / 89dbicadmin.t
index 39eef83..095204d 100644 (file)
@@ -6,10 +6,10 @@ use Test::More;
 use lib qw(t/lib);
 use DBICTest;
 
-my $schema = DBICTest->init_schema();
+my $schema = DBICTest->init_schema( sqlite_use_file => 1 );
 
-eval 'require JSON';
-plan skip_all => 'Install JSON to run this test' if ($@);
+eval 'require JSON::Any';
+plan skip_all => 'Install JSON::Any to run this test' if ($@);
 
 eval 'require Text::CSV_XS';
 if ($@) {