summaryrefslogtreecommitdiff
path: root/t/release-no-tabs.t
blob: 1c7204e42dc99f9a04a530350cd3773fff36848e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 
BEGIN {
  unless ($ENV{RELEASE_TESTING}) {
    require Test::More;
    Test::More::plan(skip_all => 'these tests are for release candidate testing');
  }
}
 
use strict;
use warnings;
use Test::More;
 
eval 'use Test::NoTabs';
plan skip_all => 'Test::NoTabs required' if $@;
 
all_perl_files_ok();