Acme-AjiFry
view release on metacpan or search on metacpan
xt/local_functions.t view on Meta::CPAN
#!perl
use strict;
use warnings;
use utf8;
use Test::More;
eval "use Test::LocalFunctions";
plan skip_all => "Test::LocalFunctions required for testing variables" if $@;
all_local_functions_ok();
xt/perlcritic.t view on Meta::CPAN
#!perl
use strict;
use Test::More;
eval { require Test::Perl::Critic; Test::Perl::Critic->import(-profile => "xt/perlcriticrc") };
plan skip_all => "Test::Perl::Critic is not installed." if $@;
all_critic_ok();
#!perl
use strict;
use warnings;
use utf8;
use Test::More;
eval "use Test::Vars";
plan skip_all => "Test::Vars required for testing variables" if $@;
all_vars_ok();
( run in 0.549 second using v1.01-cache-2.11-cpan-ceb78f64989 )