mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-03 06:27:16 +08:00
Replaced the Test::Builder::Tester Perl Module with the Test::Simple-0.62 module and updated to the Test-Pod-1.22 Perl Module
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@5557 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
parent
635a8a207f
commit
51f154b47e
@ -172,10 +172,10 @@
|
||||
|
||||
<!-- Perl module versions used in the Perl Modules instructions -->
|
||||
<!ENTITY Module-Info-version "0.28">
|
||||
<!ENTITY Test-Pod-version "1.20">
|
||||
<!ENTITY Test-Pod-version "1.22">
|
||||
<!ENTITY Pod-Simple-version "3.03">
|
||||
<!ENTITY Pod-Escapes-version "1.04">
|
||||
<!ENTITY Test-Builder-Tester-version "1.01">
|
||||
<!-- <!ENTITY Test-Builder-Tester-version "1.01"> -->
|
||||
<!ENTITY Module-Build-version "0.2611">
|
||||
<!ENTITY Module-Signature-version "0.50">
|
||||
<!ENTITY Digest-SHA-version "5.31">
|
||||
@ -190,6 +190,7 @@
|
||||
<!ENTITY Algorithm-Diff-version "1.1901">
|
||||
<!ENTITY YAML-version "0.39">
|
||||
<!ENTITY Spiffy-version "0.25">
|
||||
<!ENTITY Test-Simple-version "0.62">
|
||||
<!ENTITY XML-Parser-version "2.34">
|
||||
<!ENTITY SGMLSpm-version "1.03ii">
|
||||
<!ENTITY Perl-Tk-version "804.027">
|
||||
|
@ -51,6 +51,24 @@
|
||||
|
||||
-->
|
||||
|
||||
<!-- This is info for the Test::Builder::Tester module which may very well
|
||||
be obsolete now. The packages that need it apparently also now need
|
||||
Test::More-0.62 which is a core Perl module in an updated version. To
|
||||
install the Test::More-0.62 version you must install the
|
||||
Test::Simple-0.62 module which will overwrite the Perl core stuff.
|
||||
The Test::Simple-0.62 module now includes the Test::Builder::Tester
|
||||
module. Perl versions starting with Perl-5.9.x will have this module
|
||||
include in the core at which time Test::Builder::Tester can be forever
|
||||
removed from this page as it will then also be a core module.
|
||||
|
||||
<para id="perl-test-builder-tester"><ulink
|
||||
url="http://cpan.org/authors/id/M/MA/MARKF/Test-Builder-Tester-&Test-Builder-Tester-version;.tar.gz">
|
||||
Test-Builder-Tester-&Test-Builder-Tester-version;</ulink></para>
|
||||
<indexterm zone="perl-modules perl-test-builder-tester">
|
||||
<primary sortas="g-Test-Builder-Tester">Test::Builder::Tester</primary>
|
||||
</indexterm>
|
||||
-->
|
||||
|
||||
<!-- Module::Info -->
|
||||
<bridgehead renderas="sect3" id="perl-module-info"
|
||||
xreflabel="Module::Info">The Module::Info Module</bridgehead>
|
||||
@ -120,13 +138,7 @@
|
||||
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para id="perl-test-builder-tester"><ulink
|
||||
url="http://cpan.org/authors/id/M/MA/MARKF/Test-Builder-Tester-&Test-Builder-Tester-version;.tar.gz">
|
||||
Test-Builder-Tester-&Test-Builder-Tester-version;</ulink></para>
|
||||
<indexterm zone="perl-modules perl-test-builder-tester">
|
||||
<primary sortas="g-Test-Builder-Tester">
|
||||
Test::Builder::Tester</primary>
|
||||
</indexterm>
|
||||
<para><xref linkend="perl-test-simple"/></para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
@ -391,6 +403,37 @@
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<!-- Test::Simple -->
|
||||
<bridgehead renderas="sect3" id="perl-test-simple"
|
||||
xreflabel="Test::Simple">The Test::Simple Module</bridgehead>
|
||||
|
||||
<indexterm zone="perl-modules perl-test-simple">
|
||||
<primary sortas="g-Test-Simple">Test::Simple</primary>
|
||||
</indexterm>
|
||||
|
||||
<para>The Test::Simple module contains utilities designed to assist
|
||||
developers in creating tests. A version of Test::Simple was installed
|
||||
during LFS with the <application>Perl</application>-&LFS-Perl-version;
|
||||
installation, however, some of the sub-modules contained in Test::Simple
|
||||
have been updated (notably, the Test::More module) and these updated
|
||||
modules are now required by other modules. This updated version of
|
||||
Test::Simple also now includes the Test:Builder:Tester module, required by
|
||||
many of the modules on this page. Note that installing this updated
|
||||
version of Test::Simple will overwrite some files from the original
|
||||
<application>Perl</application> installation, but there's really nothing to
|
||||
be alarmed about as these modules are only used by developers creating
|
||||
tests, or for running the test suites during additional module
|
||||
installations.</para>
|
||||
|
||||
<itemizedlist spacing='compact'>
|
||||
<listitem>
|
||||
<para><ulink
|
||||
url="http://cpan.org/authors/id/M/MS/MSCHWERN/Test-Simple-&Test-Simple-version;.tar.gz">
|
||||
Test-Simple-&Test-Simple-version;</ulink>
|
||||
(<xref linkend="perl-standard-install"/>)</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<!-- XML::Parser -->
|
||||
<bridgehead renderas="sect3" id="perl-xml-parser"
|
||||
xreflabel="XML::Parser">The XML::Parser Module</bridgehead>
|
||||
|
@ -44,6 +44,13 @@
|
||||
<listitem>
|
||||
<para>January 15th, 2006</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para>[randy] - Replaced the Test::Builder::Tester Perl Module with
|
||||
the Test::Simple-0.62 module.</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>[randy] - Updated to the Test-Pod-1.22 Perl Module.</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>[randy] - Updated to the HTML-Tagset-3.10, HTML-Parser-3.48 and
|
||||
Pod-Simple-3.03 Perl Modules.</para>
|
||||
|
Loading…
Reference in New Issue
Block a user