this stuff does not work yet
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / backcompat / 0.04006 / 10sqlite_common.t
CommitLineData
9a95164d 1use strict;
2use lib qw(t/lib);
3use dbixcsl_common_tests;
4
5eval { require DBD::SQLite };
6my $class = $@ ? 'SQLite2' : 'SQLite';
7
8{
9 my $tester = dbixcsl_common_tests->new(
10 vendor => 'SQLite',
11 auto_inc_pk => 'INTEGER NOT NULL PRIMARY KEY',
12 dsn => "dbi:$class:dbname=./t/sqlite_test",
13 user => '',
14 password => '',
15 );
16
17 $tester->run_tests();
18}
19
20END {
21 unlink './t/sqlite_test';
22}