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-mysql.tmp"; |
added common test executing ...
|
7 |
$ENV{DBIX_CUSTOM_SKIP_MESSAGE} = 'mysql private test'; |
8 | ||
9 |
use DBIx::Custom; |
|
10 |
{ |
|
11 |
package DBIx::Custom; |
|
cleanup
|
12 | |
13 |
my $date = 'Date'; |
|
14 |
my $time = 'Time'; |
|
15 |
my $datetime = 'Datetime'; |
|
test cleanup
|
16 |
|
added common test executing ...
|
17 |
no warnings 'redefine'; |
test cleanup
|
18 |
has dsn => "dbi:mysql:database=dbix_custom"; |
19 |
has user => 'dbix_custom'; |
|
20 |
has password => 'dbix_custom'; |
|
added common test executing ...
|
21 |
|
test cleanup
|
22 |
sub create_table1 { 'create table table1 (key1 varchar(255), key2 varchar(255)) engine=InnoDB;' } |
cleanup test
|
23 |
sub create_table1_2 {'create table table1 (key1 varchar(255), key2 varchar(255), ' |
test cleanup
|
24 |
. 'key3 varchar(255), key4 varchar(255), key5 varchar(255)) engine=InnoDB;' } |
test cleanup
|
25 |
sub create_table1_type { 'create table table1 (key1 Date, key2 datetime) engine=InnoDB;;' } |
test cleanup
|
26 |
sub create_table1_highperformance { "create table table1 (ab varchar(255), bc varchar(255), " |
27 |
. "ik varchar(255), hi varchar(255), ui varchar(255), pq varchar(255), dc varchar(255)) engine=InnoDB;" } |
|
test cleanup
|
28 |
sub create_table2 { 'create table table2 (key1 varchar(255), key3 varchar(255)) engine=InnoDB;' } |
test cleranup
|
29 |
sub create_table2_2 { "create table table2 (key1 varchar(255), key2 varchar(255), key3 varchar(255)) engine=InnoDB" } |
30 |
sub create_table3 { "create table table3 (key1 varchar(255), key2 varchar(255), key3 varchar(255)) engine=InnoDB" } |
|
test cleanup
|
31 |
sub create_table_reserved { |
test cleanup
|
32 |
'create table `table` (`select` varchar(255), `update` varchar(255)) engine=InnoDB' } |
added common test executing ...
|
33 |
} |
34 | ||
35 |
require "$FindBin::Bin/common.t"; |