1#!perl
2
3BEGIN {
4  unless ($ENV{RELEASE_TESTING}) {
5    require Test::More;
6    Test::More::plan(skip_all => 'these tests are for release candidate testing');
7  }
8}
9
10
11use strict;
12use warnings;
13
14use Test::More;
15
16eval 'use Test::Portability::Files';
17plan skip_all => 'Test::Portability::Files required for testing portability'
18    if $@;
19
20run_tests();
21