App-local-lib-Win32Helper
view release on metacpan or search on metacpan
xt/800_perlcritic.t view on Meta::CPAN
#!/usr/bin/perl
# Test that modules pass perlcritic and perltidy.
use strict;
BEGIN {
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Perl::Tidy',
'Perl::Critic',
'PPIx::Regexp',
'Email::Address',
'Perl::Critic::Utils::Constants',
'Perl::Critic::More',
xt/801_pod.t view on Meta::CPAN
#!/usr/bin/perl
# Test that the syntax of our POD documentation is valid
use strict;
BEGIN {
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Pod::Simple 3.07',
'Test::Pod 1.41',
);
# Load the testing modules
use Test::More;
xt/803_minimumversion.t view on Meta::CPAN
#!/usr/bin/perl
# Test that our declared minimum Perl version matches our syntax
use strict;
BEGIN {
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
use Test::More;
xt/804_manifest.t view on Meta::CPAN
#!/usr/bin/perl
# Test that our MANIFEST describes the distribution
use strict;
BEGIN {
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Test::DistManifest 1.001003',
);
# Load the testing modules
use Test::More;
foreach my $MODULE ( @MODULES ) {
xt/805_meta.t view on Meta::CPAN
#!/usr/bin/perl
# Test that our META.yml file matches the specification
use strict;
BEGIN {
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Test::CPAN::Meta 0.12',
);
# Load the testing modules
use Test::More;
foreach my $MODULE ( @MODULES ) {
xt/806_portability.t view on Meta::CPAN
#!/usr/bin/perl
# Test that our files are portable across systems.
use strict;
BEGIN {
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Test::Portability::Files 0.05',
);
# Load the testing modules
use Test::More;
xt/807_version.t view on Meta::CPAN
#!/usr/bin/perl
# Test that all modules have a version number.
use strict;
BEGIN {
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Test::HasVersion 0.012',
);
# Load the testing modules
use Test::More;
foreach my $MODULE ( @MODULES ) {
xt/808_changes.t view on Meta::CPAN
#!/usr/bin/perl
# Test that all modules have a version number.
use strict;
BEGIN {
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Test::CheckChanges 0.14',
);
# Load the testing modules
use Test::More;
foreach my $MODULE ( @MODULES ) {
xt/809_fixme.t view on Meta::CPAN
#!/usr/bin/perl
# Test that all modules have a version number.
use strict;
BEGIN {
use English qw(-no_match_vars);
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Test::Fixme 0.04',
);
# Load the testing modules
use Test::More;
use File::Spec::Functions qw(catdir);
xt/810_common_mistakes.t view on Meta::CPAN
#!/usr/bin/perl
# Test that all modules have a version number.
use strict;
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
use Test::More;
( run in 0.501 second using v1.01-cache-2.11-cpan-c6e0e5ac2a7 )