The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use Test::More tests => 1;

BEGIN {
    eval { require Date::Calc; };
    my $skip_all = ( $@ ) ? 1 : 0;

    SKIP: {
        skip "Gantry::Plugins::Validate requires Date::Calc", 1
                if $skip_all;

        use_ok( 'Gantry::Plugins::Validate' );
    }
}