AI-CRM114
view release on metacpan or search on metacpan
=========
Please see `perldoc lib/AI/CRM114.pm` for details.
INSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make install
t/00basic.t view on Meta::CPAN
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl HTML-Encoding.t'
#########################
# change 'tests => 1' to 'tests => last_test_to_print';
use Test::More tests => 1;
BEGIN { use_ok('AI::CRM114') };
#########################
# Insert your test code below, the Test::More module is use()ed here so read
# its man page ( perldoc Test::More ) for help writing this test script.
t/98podsyn.t view on Meta::CPAN
# 99pod.t -- Minimally check POD for problems.
#
# $Id$
use strict;
use warnings;
use Test::More;
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok();
t/99podcov.t view on Meta::CPAN
# 99pod.t -- Minimally check POD for code coverage.
#
# $Id$
use strict;
use warnings;
use Test::More;
eval "use Test::Pod::Coverage";
plan skip_all => "Test::Pod::Coverage required for testing pod coverage" if $@;
plan tests => 1;
pod_coverage_ok('AI::CRM114');
( run in 0.554 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )