The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!perl -wT

use strict;

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

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