r3466 - in /packages/libemail-simple-creator-perl/branches/upstream/current: Changes MANIFEST META.yml lib/Email/Simple/Creator.pm t/create.t t/pod-coverage.t t/pod.t

pabs-guest at users.alioth.debian.org pabs-guest at users.alioth.debian.org
Sat Aug 12 09:25:47 UTC 2006


Author: pabs-guest
Date: Sat Aug 12 09:25:46 2006
New Revision: 3466

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=3466
Log:
Load /tmp/tmp.AALpR14576/libemail-simple-creator-perl-1.41 into
packages/libemail-simple-creator-perl/branches/upstream/current.

Added:
    packages/libemail-simple-creator-perl/branches/upstream/current/t/pod-coverage.t
    packages/libemail-simple-creator-perl/branches/upstream/current/t/pod.t
Modified:
    packages/libemail-simple-creator-perl/branches/upstream/current/Changes
    packages/libemail-simple-creator-perl/branches/upstream/current/MANIFEST
    packages/libemail-simple-creator-perl/branches/upstream/current/META.yml
    packages/libemail-simple-creator-perl/branches/upstream/current/lib/Email/Simple/Creator.pm
    packages/libemail-simple-creator-perl/branches/upstream/current/t/create.t

Modified: packages/libemail-simple-creator-perl/branches/upstream/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/branches/upstream/current/Changes?rev=3466&op=diff
==============================================================================
--- packages/libemail-simple-creator-perl/branches/upstream/current/Changes (original)
+++ packages/libemail-simple-creator-perl/branches/upstream/current/Changes Sat Aug 12 09:25:46 2006
@@ -1,3 +1,8 @@
+1.41   2006-07-03
+
+  - don't use no_plan in test; it breaks under old Test::More
+    (applied by RJBS, thanks to LTHEGLER)
+
 1.4    2004-07-25
 
   - use Email::Date

Modified: packages/libemail-simple-creator-perl/branches/upstream/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/branches/upstream/current/MANIFEST?rev=3466&op=diff
==============================================================================
--- packages/libemail-simple-creator-perl/branches/upstream/current/MANIFEST (original)
+++ packages/libemail-simple-creator-perl/branches/upstream/current/MANIFEST Sat Aug 12 09:25:46 2006
@@ -5,3 +5,5 @@
 META.yml
 README
 t/create.t
+t/pod.t
+t/pod-coverage.t

Modified: packages/libemail-simple-creator-perl/branches/upstream/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/branches/upstream/current/META.yml?rev=3466&op=diff
==============================================================================
--- packages/libemail-simple-creator-perl/branches/upstream/current/META.yml (original)
+++ packages/libemail-simple-creator-perl/branches/upstream/current/META.yml Sat Aug 12 09:25:46 2006
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Email-Simple-Creator
-version:      1.4
+version:      1.41
 version_from: lib/Email/Simple/Creator.pm
 installdirs:  site
 requires:
@@ -10,4 +10,4 @@
     Test::More:                    0.47
 
 distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.17
+generated_by: ExtUtils::MakeMaker version 6.30

Modified: packages/libemail-simple-creator-perl/branches/upstream/current/lib/Email/Simple/Creator.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/branches/upstream/current/lib/Email/Simple/Creator.pm?rev=3466&op=diff
==============================================================================
--- packages/libemail-simple-creator-perl/branches/upstream/current/lib/Email/Simple/Creator.pm (original)
+++ packages/libemail-simple-creator-perl/branches/upstream/current/lib/Email/Simple/Creator.pm Sat Aug 12 09:25:46 2006
@@ -1,9 +1,8 @@
 package Email::Simple::Creator;
-# $Id: Creator.pm,v 1.4 2004/07/25 20:29:28 cwest Exp $
 use strict;
 
 use vars qw[$VERSION $CRLF];
-$VERSION = (qw$Revision: 1.4 $)[1];
+$VERSION = '1.41';
 $CRLF    = "\x0a\x0d";
 
 sub _date_header {

Modified: packages/libemail-simple-creator-perl/branches/upstream/current/t/create.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/branches/upstream/current/t/create.t?rev=3466&op=diff
==============================================================================
--- packages/libemail-simple-creator-perl/branches/upstream/current/t/create.t (original)
+++ packages/libemail-simple-creator-perl/branches/upstream/current/t/create.t Sat Aug 12 09:25:46 2006
@@ -1,4 +1,4 @@
-use Test::More qw[no_plan];
+use Test::More tests => 6;
 use_ok 'Email::Simple::Creator';
 use_ok 'Email::Simple';
 
@@ -46,4 +46,4 @@
     $pass ?
       is   $string, $message :
       isnt $string, $message;
-}
+}

Added: packages/libemail-simple-creator-perl/branches/upstream/current/t/pod-coverage.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/branches/upstream/current/t/pod-coverage.t?rev=3466&op=file
==============================================================================
--- packages/libemail-simple-creator-perl/branches/upstream/current/t/pod-coverage.t (added)
+++ packages/libemail-simple-creator-perl/branches/upstream/current/t/pod-coverage.t Sat Aug 12 09:25:46 2006
@@ -1,0 +1,10 @@
+#!perl -T
+
+use Test::More;
+eval "use Test::Pod::Coverage 1.08";
+plan skip_all => "Test::Pod::Coverage 1.08 required for testing POD coverage"
+  if $@;
+
+all_pod_coverage_ok({
+  coverage_class => 'Pod::Coverage::CountParents'
+});

Added: packages/libemail-simple-creator-perl/branches/upstream/current/t/pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/branches/upstream/current/t/pod.t?rev=3466&op=file
==============================================================================
--- packages/libemail-simple-creator-perl/branches/upstream/current/t/pod.t (added)
+++ packages/libemail-simple-creator-perl/branches/upstream/current/t/pod.t Sat Aug 12 09:25:46 2006
@@ -1,0 +1,6 @@
+#!perl -T
+
+use Test::More;
+eval "use Test::Pod 1.14";
+plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
+all_pod_files_ok();




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