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 -T

use strict;
use warnings;

use Test::More;


# Load Test::CheckManifest.
my $min_version = '0.9';
eval "use Test::CheckManifest $min_version";
plan( skip_all => "Test::CheckManifest $min_version required" )
	if $@;

# Verify files against manifest.
ok_manifest(
	{
		exclude => [ '/.git/' ],
	}
);