1#!/usr/bin/perl
2use strict;
3use warnings;
4use Test::More;
5
6unless ($ENV{RELEASE_TESTING}) {
7  plan( skip_all => 'these tests are for release candidate testing' );
8}
9
10eval "use Test::CheckManifest 0.9";    ## no critic (eval)
11plan skip_all => "Test::CheckManifest 0.9 required" if $@;
12ok_manifest( {
13  exclude => [qw(/.git /.gitignore /Makefile.old)],
14  filter => [qr/\.swp$/, qr/.tar.gz$/],
15} );
16