X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FOptional%2FDependencies.pm;h=6bba18b155e5022be5807a449aecd09da9722a95;hb=270edb2b23987c2b8c7522b402a0d72627cea119;hp=c1a4fe46b296fdce801e71c8c1df4630ac5cd227;hpb=e666c5fd810f9103a8e2ae1994e45828169e703d;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Optional/Dependencies.pm b/lib/DBIx/Class/Optional/Dependencies.pm index c1a4fe4..6bba18b 100644 --- a/lib/DBIx/Class/Optional/Dependencies.pm +++ b/lib/DBIx/Class/Optional/Dependencies.pm @@ -66,7 +66,7 @@ my $reqs = { deploy => { req => { - 'SQL::Translator' => '0.11002', + 'SQL::Translator' => '0.11005', }, pod => { title => 'Storage::DBI::deploy()', @@ -74,28 +74,55 @@ my $reqs = { }, }, - author => { + + test_pod => { + req => { + 'Test::Pod' => '1.41', + }, + }, + + test_podcoverage => { req => { - 'Test::Pod' => '1.26', 'Test::Pod::Coverage' => '1.08', 'Pod::Coverage' => '0.20', + }, + }, + + test_notabs => { + req => { #'Test::NoTabs' => '0.9', + }, + }, + + test_eol => { + req => { #'Test::EOL' => '0.6', }, }, - core => { + test_cycle => { req => { - # t/52cycle.t 'Test::Memory::Cycle' => '0', 'Devel::Cycle' => '1.10', + }, + }, + test_dtrelated => { + req => { # t/36datetime.t # t/60core.t 'DateTime::Format::SQLite' => '0', # t/96_is_deteministic_value.t 'DateTime::Format::Strptime'=> '0', + + # t/inflate/datetime_mysql.t + # (doesn't need Mysql itself) + 'DateTime::Format::MySQL' => '0', + + # t/inflate/datetime_pg.t + # (doesn't need PG itself) + 'DateTime::Format::Pg' => '0', }, }, @@ -116,7 +143,6 @@ my $reqs = { ? ( 'Sys::SigAction' => '0', 'DBD::Pg' => '2.009002', - 'DateTime::Format::Pg' => '0', ) : () }, }, @@ -125,7 +151,6 @@ my $reqs = { req => { $ENV{DBICTEST_MYSQL_DSN} ? ( - 'DateTime::Format::MySQL' => '0', 'DBD::mysql' => '0', ) : () }, @@ -157,6 +182,16 @@ my $reqs = { ) : () }, }, + + rdbms_db2 => { + req => { + $ENV{DBICTEST_DB2_DSN} + ? ( + 'DBD::DB2' => 0, + ) : () + }, + }, + };