1#!perl
2
3BEGIN {
4  unless ($ENV{RELEASE_TESTING}) {
5    print qq{1..0 # SKIP these tests are for release candidate testing\n};
6    exit
7  }
8}
9
10
11# This test is generated by Dist::Zilla::Plugin::Test::Kwalitee::Extra
12use strict;
13use warnings;
14use Test::More;   # needed to provide plan.
15
16eval { require Test::Kwalitee::Extra };
17plan skip_all => "Test::Kwalitee::Extra required for testing kwalitee: $@" if $@;
18
19eval "use Test::Kwalitee::Extra";
20