The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl -w

use strict;

use Test::Most;
eval "use Test::Apocalypse";

if ($@){
	plan skip_all => 'Test::Apocalypse required for testing the distribution';
} else {
	is_apocalypse_here();
}