X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F73oracle_inflate.t;h=20e70890251283073135682fef50ac80daffc6e2;hb=90f80a179bef37e4d96d6f8c0baaf513240db986;hp=3d1b4130b25cee6d28e2b9e25dfe113babb38d6f;hpb=a101efab87afdc30fa73f607aa206e523c6dd7af;p=dbsrgits%2FDBIx-Class.git diff --git a/t/73oracle_inflate.t b/t/73oracle_inflate.t index 3d1b413..20e7089 100644 --- a/t/73oracle_inflate.t +++ b/t/73oracle_inflate.t @@ -7,16 +7,18 @@ use DBICTest; my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_ORA_${_}" } qw/DSN USER PASS/}; -eval "use DateTime; use DateTime::Format::Oracle;"; -if ($@) { - plan skip_all => 'needs DateTime and DateTime::Format::Oracle for testing'; -} -elsif (not ($dsn && $user && $pass)) { +if (not ($dsn && $user && $pass)) { plan skip_all => 'Set $ENV{DBICTEST_ORA_DSN}, _USER and _PASS to run this test. ' . 'Warning: This test drops and creates a table called \'track\''; } else { - plan tests => 4; + eval "use DateTime; use DateTime::Format::Oracle;"; + if ($@) { + plan skip_all => 'needs DateTime and DateTime::Format::Oracle for testing'; + } + else { + plan tests => 4; + } } # DateTime::Format::Oracle needs this set