Blame t/release-no-tabs.t

Packit 9002b2
Packit 9002b2
BEGIN {
Packit 9002b2
  unless ($ENV{RELEASE_TESTING}) {
Packit 9002b2
    require Test::More;
Packit 9002b2
    Test::More::plan(skip_all => 'these tests are for release candidate testing');
Packit 9002b2
  }
Packit 9002b2
}
Packit 9002b2
Packit 9002b2
use strict;
Packit 9002b2
use warnings;
Packit 9002b2
use Test::More;
Packit 9002b2
Packit 9002b2
eval 'use Test::NoTabs';
Packit 9002b2
plan skip_all => 'Test::NoTabs required' if $@;
Packit 9002b2
Packit 9002b2
all_perl_files_ok();