added common test executing ...
|
1 |
use strict; |
2 |
use warnings; |
|
3 | ||
4 |
use FindBin; |
|
5 |
$ENV{DBIX_CUSTOM_TEST_RUN} = 1 |
|
6 |
if -f "$FindBin::Bin/run/common-mysql-private.tmp"; |
|
7 |
$ENV{DBIX_CUSTOM_SKIP_MESSAGE} = 'mysql private test'; |
|
8 | ||
9 |
use DBIx::Custom; |
|
10 |
{ |
|
11 |
package DBIx::Custom; |
|
12 |
no warnings 'redefine'; |
|
13 |
sub dsn { "dbi:mysql:database=dbix_custom" } |
|
14 |
sub user { 'dbix_custom' } |
|
15 |
sub password { 'dbix_custom' } |
|
16 |
|
|
17 |
sub create_table1 { 'create table table1 (key1 varchar(255), key2 varchar(255));' } |
|
18 |
} |
|
19 | ||
20 |
require "$FindBin::Bin/common.t"; |