added common test executing ...
|
1 |
use strict; |
2 |
use warnings; |
|
3 | ||
4 |
use FindBin; |
|
5 |
$ENV{DBIX_CUSTOM_TEST_RUN} = 1 |
|
test cleanup
|
6 |
if -f "$FindBin::Bin/run/common-postgresql.tmp"; |
added common test executing ...
|
7 |
$ENV{DBIX_CUSTOM_SKIP_MESSAGE} = 'postgresql private test'; |
8 | ||
9 |
use DBIx::Custom; |
|
10 |
{ |
|
11 |
package DBIx::Custom; |
|
12 |
no warnings 'redefine'; |
|
test cleanup
|
13 |
has dsn => "dbi:Pg:dbname=dbix_custom"; |
14 |
has user => 'dbix_custom'; |
|
15 |
has password => 'dbix_custom'; |
|
added common test executing ...
|
16 |
|
17 |
sub create_table1 { 'create table table1 (key1 varchar(255), key2 varchar(255));' } |
|
cleanup test
|
18 |
sub create_table1_2 {'create table table1 (key1 varchar(255), key2 varchar(255), ' |
19 |
. 'key3 varchar(255), key4 varchar(255), key5 varchar(255));' } |
|
test cleanup
|
20 |
sub create_table1_type { 'create table table1 (key1 Date, key2 varchar(255));' } |
test cleanup
|
21 |
sub create_table2 { 'create table table2 (key1 varchar(255), key3 varchar(255));' } |
22 |
sub create_table_reserved { 'create table "table" ("select" varchar(255), "update" varchar(255))' } |
|
added common test executing ...
|
23 |
} |
24 | ||
25 |
require "$FindBin::Bin/common.t"; |