#!/usr/bin/env perl
BEGIN {
unless
(
$ENV
{RELEASE_TESTING}) {
Test::More::plan(
skip_all
=>
'these tests are for release candidate testing'
);
}
}
use
strict;
use
warnings;
use
Test::More 0.88;
eval
"use Test::NoSmartComments"
;
plan
skip_all
=>
'Test::NoSmartComments required for checking comment IQ'
if
$@;
no_smart_comments_in_all();
done_testing();