The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;

use Test::More;

if(exists $ENV{'RELEASE_TESTING'}) {
    plan tests => 1;
    fail "some release tests fail! =(";
} else {
    plan skip_all => 'I shouldn\'t be running release tests!';
}