1BEGIN {
2  unless ($ENV{RELEASE_TESTING}) {
3    require Test::More;
4    Test::More::plan(skip_all => 'these tests are for release testing');
5  }
6}
7
8use Test::More;
9
10eval 'use Test::DistManifest';
11if ($@) {
12  plan skip_all => 'Test::DistManifest required to test MANIFEST';
13}
14
15manifest_ok();
16