The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# http://search.cpan.org/~bdfoy/Test-Prereq/lib/Build.pm

# $Id: prerequisites.t 7625 2011-04-25 05:43:06Z jonasbn $

use strict;
use warnings;
use Test::More;
eval "use Test::Prereq::Build";

my $msg;

if ($@) {
    $msg = 'Test::Prereq::Build required to test dependencies';
} elsif (not $ENV{TEST_AUTHOR}) {
    $msg = 'set TEST_AUTHOR to enable this test';
}

plan skip_all => $msg if $msg;

prereq_ok();