ExtUtils-SVDmaker
view release on metacpan or search on metacpan
t/ExtUtils/SVDmaker/Revise.pm view on Meta::CPAN
#
# the next time Test::STDmaker generates this file.
#
#
=head1 NAME
- Software Test Description for ExtUtils::SVDmaker
=head1 TITLE PAGE
Detailed Software Test Description (STD)
for
Perl ExtUtils::SVDmaker Program Module
Revision: -
Version:
Date: 2004/05/25
Prepared for: General Public
Prepared by: http://www.SoftwareDiamonds.com support@SoftwareDiamonds.com
Classification: None
#######
#
# 1. SCOPE
#
#
=head1 SCOPE
This detail STD and the
L<General Perl Program Module (PM) STD|Test::STD::PerlSTD>
establishes the tests to verify the
requirements of Perl Program Module (PM) L<ExtUtils::SVDmaker|ExtUtils::SVDmaker>
The format of this STD is a tailored L<2167A STD DID|Docs::US_DOD::STD>.
#######
#
# 3. TEST PREPARATIONS
#
#
=head1 TEST PREPARATIONS
Test preparations are establishes by the L<General STD|Test::STD::PerlSTD>.
#######
#
# 4. TEST DESCRIPTIONS
#
#
=head1 TEST DESCRIPTIONS
The test descriptions uses a legend to
identify different aspects of a test description
in accordance with
L<STD PM Form Database Test Description Fields|Test::STDmaker/STD PM Form Database Test Description Fields>.
=head2 Test Plan
T: 11^
=head2 ok: 1
C:
use vars qw($loaded);
use File::Glob ':glob';
use File::Copy;
use File::Path;
use File::Spec;
use File::Package;
use File::SmartNL;
use Text::Scrub;
my $loaded = 0;
my $snl = 'File::SmartNL';
my $fp = 'File::Package';
my $s = 'Text::Scrub';
my $w = 'File::Where';
my $fs = 'File::Spec';
^
N: UUT not loaded^
A: $fp->is_package_loaded('ExtUtils::SVDmaker')^
E: ''^
ok: 1^
=head2 ok: 2
N: Load UUT^
R: L<ExtUtils::SVDmaker/load [1]>^
S: $loaded^
C: my $errors = $fp->load_package( 'ExtUtils::SVDmaker' )^
A: $errors^
SE: ''^
ok: 2^
=head2 ok: 3
C:
######
# Add the SVDmaker test lib and test t directories onto @INC
#
unshift @INC, File::Spec->catdir( cwd(), 't');
unshift @INC, File::Spec->catdir( cwd(), 'lib');
rmtree( 't' );
rmtree( 'lib' );
rmtree( 'packages' );
mkpath( 't' );
mkpath( 'lib' );
mkpath( 'packages' );
mkpath( $fs->catfile( 't', 'Test' ));
mkpath( $fs->catfile( 't', 'Data' ));
( run in 0.673 second using v1.01-cache-2.11-cpan-39bf76dae61 )