X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=xt%2Fpod.t;h=773e5acfd9239a812f3b7294b61e57cc9a5be406;hb=cb551b07;hp=0ed796bb7eb59e75400ae8f6730160173d07e4e1;hpb=afb8fc5295f37e051ab76636d1f73538f42edc08;p=dbsrgits%2FDBIx-Class.git diff --git a/xt/pod.t b/xt/pod.t index 0ed796b..773e5ac 100644 --- a/xt/pod.t +++ b/xt/pod.t @@ -1,3 +1,5 @@ +use DBIx::Class::Optional::Dependencies -skip_all_without => 'test_pod'; + use warnings; use strict; @@ -5,14 +7,6 @@ use Test::More; use lib qw(t/lib); use DBICTest; -require DBIx::Class; -unless ( DBIx::Class::Optional::Dependencies->req_ok_for ('test_pod') ) { - my $missing = DBIx::Class::Optional::Dependencies->req_missing_for ('test_pod'); - $ENV{RELEASE_TESTING} - ? die ("Failed to load release-testing module requirements: $missing") - : plan skip_all => "Test needs: $missing" -} - # this has already been required but leave it here for CPANTS static analysis require Test::Pod;