Showing 6 changed files with 20 additions and 4 deletions
+1 -1
t/common-mysql-private.t → t/common-mysql.t
... ...
@@ -3,7 +3,7 @@ use warnings;
3 3
 
4 4
 use FindBin;
5 5
 $ENV{DBIX_CUSTOM_TEST_RUN} = 1
6
-  if -f "$FindBin::Bin/run/common-mysql-private.tmp";
6
+  if -f "$FindBin::Bin/run/common-mysql.tmp";
7 7
 $ENV{DBIX_CUSTOM_SKIP_MESSAGE} = 'mysql private test';
8 8
 
9 9
 use DBIx::Custom;
+1 -1
t/common-postgresql-private.t → t/common-postgresql.t
... ...
@@ -3,7 +3,7 @@ use warnings;
3 3
 
4 4
 use FindBin;
5 5
 $ENV{DBIX_CUSTOM_TEST_RUN} = 1
6
-  if -f "$FindBin::Bin/run/common-postgresql-private.tmp";
6
+  if -f "$FindBin::Bin/run/common-postgresql.tmp";
7 7
 $ENV{DBIX_CUSTOM_SKIP_MESSAGE} = 'postgresql private test';
8 8
 
9 9
 use DBIx::Custom;
+16
t/common-sqlite-quote.t
... ...
@@ -0,0 +1,16 @@
1
+use strict;
2
+use warnings;
3
+
4
+use FindBin;
5
+$ENV{DBIX_CUSTOM_TEST_RUN} = 1;
6
+
7
+use DBIx::Custom;
8
+{
9
+    package DBIx::Custom;
10
+    no warnings 'redefine';
11
+    sub dsn { 'dbi:SQLite:dbname=:memory:' }
12
+    sub quote { '""' }
13
+    sub create_table1 { 'create table table1 (key1, key2);' }
14
+}
15
+
16
+require "$FindBin::Bin/common.t";
+1 -1
t/mysql-private.t → t/mysql.t
... ...
@@ -4,7 +4,7 @@ use warnings;
4 4
 
5 5
 use FindBin;
6 6
 
7
-plan skip_all => 'mysql private test' unless -f "$FindBin::Bin/run/mysql-private.tmp";
7
+plan skip_all => 'mysql private test' unless -f "$FindBin::Bin/run/mysql.tmp";
8 8
 plan 'no_plan';
9 9
 
10 10
 $SIG{__WARN__} = sub { warn $_[0] unless $_[0] =~ /DEPRECATED/};
+1 -1
t/basic-quote.t → t/sqlite-quote.t
... ...
@@ -8,4 +8,4 @@ use DBIx::Custom;
8 8
 
9 9
 use FindBin;
10 10
 
11
-require "$FindBin::Bin/basic.t";
11
+require "$FindBin::Bin/sqlite.t";
t/basic.t → t/sqlite.t
File renamed without changes.