Alien-WiX-Version30
view release on metacpan or search on metacpan
xt/author/changes.t view on Meta::CPAN
#!/usr/bin/perl
# Test that all modules have a version number.
use strict;
use Test::More;
BEGIN {
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Test::CheckChanges 0.14',
);
# Load the testing modules
foreach my $MODULE ( @MODULES ) {
eval "use $MODULE";
xt/author/common_mistakes.t view on Meta::CPAN
#!/usr/bin/perl
# Test that all modules have no common misspellings.
use strict;
use Test::More;
BEGIN {
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Pod::Spell::CommonMistakes 0.01',
'Test::Pod::Spelling::CommonMistakes 0.01',
);
# Load the testing modules
foreach my $MODULE ( @MODULES ) {
xt/author/fixme.t view on Meta::CPAN
#!/usr/bin/perl
# Test that all modules have a version number.
use strict;
use Test::More;
BEGIN {
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Test::Fixme 0.04',
);
# Load the testing modules
foreach my $MODULE ( @MODULES ) {
eval "use $MODULE";
xt/author/manifest.t view on Meta::CPAN
#!perl
# Test that our MANIFEST describes the distribution
use strict;
use Test::More;
BEGIN {
BAIL_OUT ('Perl version unacceptably old.') if ($] < 5.008001);
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Test::DistManifest 1.001003',
);
unless ( -e 'MANIFEST.SKIP' ) {
plan( skip_all => "MANIFEST.SKIP does not exist, so cannot test this." );
}
xt/author/meta.t view on Meta::CPAN
#!perl
# Test that our META.yml file matches the specification
use strict;
use Test::More;
BEGIN {
BAIL_OUT ('Perl version unacceptably old.') if ($] < 5.008001);
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Parse::CPAN::Meta 1.38',
'Test::CPAN::Meta 0.13',
);
# Load the testing modules
foreach my $MODULE ( @MODULES ) {
xt/author/minimumversion.t view on Meta::CPAN
#!perl
# Test that our declared minimum Perl version matches our syntax
use strict;
use Test::More;
BEGIN {
BAIL_OUT ('Perl version unacceptably old.') if ($] < 5.008001);
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Perl::MinimumVersion 1.20',
'Test::MinimumVersion 0.008',
);
# Load the testing modules
foreach my $MODULE ( @MODULES ) {
xt/author/perlcritic.t view on Meta::CPAN
#!perl
# Test that modules pass perlcritic and perltidy.
use strict;
use Test::More;
BEGIN {
BAIL_OUT ('Perl version unacceptably old.') if ($] < 5.008001);
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Perl::Tidy',
'Perl::Critic',
'Perl::Critic::Utils::Constants',
'Perl::Critic::More',
'Test::Perl::Critic',
);
xt/author/pod.t view on Meta::CPAN
#!perl
# Test that the syntax of our POD documentation is valid
use strict;
use Test::More;
BEGIN {
BAIL_OUT ('Perl version unacceptably old.') if ($] < 5.008001);
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Pod::Simple 3.14',
'Test::Pod 1.26',
);
# Load the testing modules
foreach my $MODULE ( @MODULES ) {
xt/author/pod_coverage.t view on Meta::CPAN
#!perl
# Test that modules are documented by their pod.
use strict;
use Test::More;
use English qw(-no_match_vars);
BEGIN {
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Pod::Coverage 0.20',
'Pod::Coverage::TrustPod 0.092830',
'Test::Pod::Coverage 1.08',
);
# Load the testing modules
xt/author/portability.t view on Meta::CPAN
#!perl
# Test that our files are portable across systems.
use strict;
use Test::More;
BEGIN {
BAIL_OUT ('Perl version unacceptably old.') if ($] < 5.008001);
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Test::Portability::Files 0.05',
);
# Load the testing modules
foreach my $MODULE ( @MODULES ) {
eval "use $MODULE";
xt/author/version.t view on Meta::CPAN
#!/usr/bin/perl
# Test that all modules have a version number.
use strict;
use Test::More;
BEGIN {
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Test::HasVersion 0.012',
);
# Load the testing modules
foreach my $MODULE ( @MODULES ) {
eval "use $MODULE";
( run in 0.521 second using v1.01-cache-2.11-cpan-4e96b696675 )