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

use strict;
use warnings;

use Test::Most;

eval 'use Test::Pod::Spelling::CommonMistakes';
if($@) {
	plan skip_all => 'Test::Pod::Spelling::CommonMistakes required for testing POD spelling';
} else {
	all_pod_files_ok();
}