Pod::Simple::XHTML::BlendedCode version 1.003
INSTALLATION
To install this module, run the following commands:
perl Makefile.PL
make
make test
make install
This method of installation will install a current version of
Module::Build if it is not already installed.
Alternatively, to install with Module::Build, you can u
more»
#!/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";
if ( $EVAL_ERROR ) {
BAIL_OUT( "Failed to load required release-testi
more»