r76641 - in /branches/upstream/starman/current: .gitignore Changes META.yml lib/Starman.pm t/harakiri.t

ghedo-guest at users.alioth.debian.org ghedo-guest at users.alioth.debian.org
Mon Jun 27 18:09:45 UTC 2011


Author: ghedo-guest
Date: Mon Jun 27 18:09:43 2011
New Revision: 76641

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=76641
Log:
[svn-upgrade] new version starman (0.2013)

Modified:
    branches/upstream/starman/current/.gitignore
    branches/upstream/starman/current/Changes
    branches/upstream/starman/current/META.yml
    branches/upstream/starman/current/lib/Starman.pm
    branches/upstream/starman/current/t/harakiri.t

Modified: branches/upstream/starman/current/.gitignore
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/starman/current/.gitignore?rev=76641&op=diff
==============================================================================
--- branches/upstream/starman/current/.gitignore (original)
+++ branches/upstream/starman/current/.gitignore Mon Jun 27 18:09:43 2011
@@ -3,3 +3,4 @@
 inc/
 pm_to_blib
 *~
+MYMETA.*

Modified: branches/upstream/starman/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/starman/current/Changes?rev=76641&op=diff
==============================================================================
--- branches/upstream/starman/current/Changes (original)
+++ branches/upstream/starman/current/Changes Mon Jun 27 18:09:43 2011
@@ -1,4 +1,7 @@
 Revision history for Perl extension Starman
+
+0.2013  Sat Jun 25 11:51:47 PDT 2011
+        - Relaxed the harakiri tests (audreyt)
 
 0.2012  Wed Jun 22 13:51:59 PDT 2011
         - Implemented psgix.harakiri mode (audreyt)

Modified: branches/upstream/starman/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/starman/current/META.yml?rev=76641&op=diff
==============================================================================
--- branches/upstream/starman/current/META.yml (original)
+++ branches/upstream/starman/current/META.yml Mon Jun 27 18:09:43 2011
@@ -36,4 +36,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: git://github.com/miyagawa/Starman.git
-version: 0.2012
+version: 0.2013

Modified: branches/upstream/starman/current/lib/Starman.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/starman/current/lib/Starman.pm?rev=76641&op=diff
==============================================================================
--- branches/upstream/starman/current/lib/Starman.pm (original)
+++ branches/upstream/starman/current/lib/Starman.pm Mon Jun 27 18:09:43 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use 5.008_001;
-our $VERSION = '0.2012';
+our $VERSION = '0.2013';
 
 1;
 __END__

Modified: branches/upstream/starman/current/t/harakiri.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/starman/current/t/harakiri.t?rev=76641&op=diff
==============================================================================
--- branches/upstream/starman/current/t/harakiri.t (original)
+++ branches/upstream/starman/current/t/harakiri.t Mon Jun 27 18:09:43 2011
@@ -20,7 +20,7 @@
             my $res = $cb->(GET "/");
             $seen_pid{$res->content}++;
         }
-        is keys(%seen_pid), 5, 'In non-harakiri mode, pid is reused';
+        cmp_ok(keys(%seen_pid), '<=', 5, 'In non-harakiri mode, pid is reused');
     };
 
 test_psgi




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