X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fbackcompat%2F0.04006%2F14ora_common.t;fp=t%2Fbackcompat%2F0.04006%2F14ora_common.t;h=edf1d9a8adbd7cb5126462a8323d89051247ca16;hb=406a97c2aab476c7a52f7c623a95f275eeb376f3;hp=3d556021eb29c7aaec121e5a846f402e5d05606d;hpb=b87ab3912a3fd6e7b3eb435d492247961a040c7f;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/t/backcompat/0.04006/14ora_common.t b/t/backcompat/0.04006/14ora_common.t index 3d55602..edf1d9a 100644 --- a/t/backcompat/0.04006/14ora_common.t +++ b/t/backcompat/0.04006/14ora_common.t @@ -1,16 +1,16 @@ +use DBIx::Class::Schema::Loader::Optional::Dependencies + -skip_all_without => qw(test_backcompat test_rdbms_oracle); + use strict; use lib qw(t/backcompat/0.04006/lib); use dbixcsl_common_tests; use Test::More; -plan skip_all => 'set SCHEMA_LOADER_TESTS_BACKCOMPAT to enable these tests' - unless $ENV{SCHEMA_LOADER_TESTS_BACKCOMPAT}; - my $dsn = $ENV{DBICTEST_ORA_DSN} || ''; my $user = $ENV{DBICTEST_ORA_USER} || ''; my $password = $ENV{DBICTEST_ORA_PASS} || ''; -my $tester = dbixcsl_common_tests->new( +dbixcsl_common_tests->new( vendor => 'Oracle', auto_inc_pk => 'INTEGER NOT NULL PRIMARY KEY', auto_inc_cb => sub { @@ -34,11 +34,4 @@ my $tester = dbixcsl_common_tests->new( dsn => $dsn, user => $user, password => $password, -); - -if( !$dsn || !$user ) { - $tester->skip_tests('You need to set the DBICTEST_ORA_DSN, _USER, and _PASS environment variables'); -} -else { - $tester->run_tests(); -} +)->run_tests();