r10658 - in /branches/upstream/libtest-pod-perl/current: Changes MANIFEST META.yml Pod.pm t/00-load.t t/all_pod_files.t

rmayorga-guest at users.alioth.debian.org rmayorga-guest at users.alioth.debian.org
Sun Dec 2 00:43:59 UTC 2007


Author: rmayorga-guest
Date: Sun Dec  2 00:43:59 2007
New Revision: 10658

URL: http://svn.debian.org/wsvn/?sc=1&rev=10658
Log:
[svn-upgrade] Integrating new upstream version, libtest-pod-perl (1.26)

Added:
    branches/upstream/libtest-pod-perl/current/t/00-load.t
Modified:
    branches/upstream/libtest-pod-perl/current/Changes
    branches/upstream/libtest-pod-perl/current/MANIFEST
    branches/upstream/libtest-pod-perl/current/META.yml
    branches/upstream/libtest-pod-perl/current/Pod.pm
    branches/upstream/libtest-pod-perl/current/t/all_pod_files.t

Modified: branches/upstream/libtest-pod-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libtest-pod-perl/current/Changes?rev=10658&op=diff
==============================================================================
--- branches/upstream/libtest-pod-perl/current/Changes (original)
+++ branches/upstream/libtest-pod-perl/current/Changes Sun Dec  2 00:43:59 2007
@@ -1,4 +1,12 @@
 Change log for Test::Pod
+
+1.26 - Wed Jul 19 09:54:48 CDT 2006
+
+    No new functionality in this version.
+
+    [FIXES]
+    * Fixed a Win32 build bug.
+    * Fixed a bug in the SYNOPSIS.
 
 1.24 - Wed Feb  1 15:18:06 PST 2006
     [THINGS THAT MAY BREAK YOUR CODE]

Modified: branches/upstream/libtest-pod-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/branches/upstream/libtest-pod-perl/current/MANIFEST?rev=10658&op=diff
==============================================================================
--- branches/upstream/libtest-pod-perl/current/MANIFEST (original)
+++ branches/upstream/libtest-pod-perl/current/MANIFEST Sun Dec  2 00:43:59 2007
@@ -3,6 +3,7 @@
 Makefile.PL
 Pod.pm
 
+t/00-load.t
 t/all_pod_files.t
 t/cut-outside-block.pod
 t/cut-outside-block.t

Modified: branches/upstream/libtest-pod-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libtest-pod-perl/current/META.yml?rev=10658&op=diff
==============================================================================
--- branches/upstream/libtest-pod-perl/current/META.yml (original)
+++ branches/upstream/libtest-pod-perl/current/META.yml Sun Dec  2 00:43:59 2007
@@ -1,16 +1,14 @@
---- #YAML:1.0
-name:                Test-Pod
-version:             1.24
-abstract:            ~
-license:             unknown
-generated_by:        ExtUtils::MakeMaker version 6.30_01
-author:              ~
-distribution_type:   module
-requires:     
+# http://module-build.sourceforge.net/META-spec.html
+#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
+name:         Test-Pod
+version:      1.26
+version_from: Pod.pm
+installdirs:  site
+requires:
     File::Spec:                    0
     Pod::Simple:                   2.04
     Test::Builder::Tester:         1.02
     Test::More:                    0.62
-meta-spec:
-    url: <http://module-build.sourceforge.net/META-spec-new.html>;
-    version: 1.1
+
+distribution_type: module
+generated_by: ExtUtils::MakeMaker version 6.30

Modified: branches/upstream/libtest-pod-perl/current/Pod.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libtest-pod-perl/current/Pod.pm?rev=10658&op=diff
==============================================================================
--- branches/upstream/libtest-pod-perl/current/Pod.pm (original)
+++ branches/upstream/libtest-pod-perl/current/Pod.pm Sun Dec  2 00:43:59 2007
@@ -8,20 +8,19 @@
 
 =head1 VERSION
 
-Version 1.24
+Version 1.26
 
 =cut
 
 use vars qw( $VERSION );
-$VERSION = '1.24';
+$VERSION = '1.26';
 
 =head1 SYNOPSIS
 
 C<Test::Pod> lets you check the validity of a POD file, and report
 its results in standard C<Test::Simple> fashion.
 
-    use Test::Pod;
-    plan tests => $num_tests;
+    use Test::Pod tests => $num_tests;
     pod_file_ok( $file, "Valid POD file" );
 
 Module authors can include the following in a F<t/pod.t> file and

Added: branches/upstream/libtest-pod-perl/current/t/00-load.t
URL: http://svn.debian.org/wsvn/branches/upstream/libtest-pod-perl/current/t/00-load.t?rev=10658&op=file
==============================================================================
--- branches/upstream/libtest-pod-perl/current/t/00-load.t (added)
+++ branches/upstream/libtest-pod-perl/current/t/00-load.t Sun Dec  2 00:43:59 2007
@@ -1,0 +1,11 @@
+#!perl -T
+
+use warnings;
+use strict;
+use Test::More tests => 1;
+
+BEGIN {
+    use_ok( 'Test::Pod' );
+}
+
+diag( "Testing Test::Pod $Test::Pod::VERSION, Perl $], $^X" );

Modified: branches/upstream/libtest-pod-perl/current/t/all_pod_files.t
URL: http://svn.debian.org/wsvn/branches/upstream/libtest-pod-perl/current/t/all_pod_files.t?rev=10658&op=diff
==============================================================================
--- branches/upstream/libtest-pod-perl/current/t/all_pod_files.t (original)
+++ branches/upstream/libtest-pod-perl/current/t/all_pod_files.t Sun Dec  2 00:43:59 2007
@@ -29,4 +29,5 @@
 }
 my @files = sort map { lc } all_pod_files( "blib", "t/pod" );
 @expected = sort map { lc } @expected;
+s{\\}{/}g for @files, @expected;
 is_deeply( \@files, \@expected, "Got all the distro files" );




More information about the Pkg-perl-cvs-commits mailing list