[Rt-commit] r3984 - in HTTP-Server-Simple-Recorder: . lib/HTTP/Server/Simple t

glasser at bestpractical.com glasser at bestpractical.com
Thu Oct 20 03:32:52 EDT 2005


Author: glasser
Date: Thu Oct 20 03:32:51 2005
New Revision: 3984

Modified:
   HTTP-Server-Simple-Recorder/Changes
   HTTP-Server-Simple-Recorder/Makefile.PL
   HTTP-Server-Simple-Recorder/lib/HTTP/Server/Simple/Recorder.pm
   HTTP-Server-Simple-Recorder/t/01.live.t
Log:
Oops, Test::HTTP::Server::Simple API change broke HSSR.  (Now version 0.02.)

Modified: HTTP-Server-Simple-Recorder/Changes
==============================================================================
--- HTTP-Server-Simple-Recorder/Changes	(original)
+++ HTTP-Server-Simple-Recorder/Changes	Thu Oct 20 03:32:51 2005
@@ -1,5 +1,8 @@
 Revision history for HTTP-Server-Simple-Recorder
 
-0.0.1  Tue Jun 28 01:28:38 2005
+0.02  Thu Oct 20 03:30:37 EDT 2005
+       Update to work with latest Test::HTTP::Server::Simple.
+
+0.01  Tue Jun 28 01:28:38 2005
        Initial release.
 

Modified: HTTP-Server-Simple-Recorder/Makefile.PL
==============================================================================
--- HTTP-Server-Simple-Recorder/Makefile.PL	(original)
+++ HTTP-Server-Simple-Recorder/Makefile.PL	Thu Oct 20 03:32:51 2005
@@ -6,7 +6,7 @@
 abstract_from('lib/HTTP/Server/Simple/Recorder.pm');
 license('perl');
 requires('Test::More');
-requires('Test::HTTP::Server::Simple');
+requires('Test::HTTP::Server::Simple' => '0.02');
 requires('IO::Tee');
 requires('HTTP::Server::Simple' => '0.10');
 

Modified: HTTP-Server-Simple-Recorder/lib/HTTP/Server/Simple/Recorder.pm
==============================================================================
--- HTTP-Server-Simple-Recorder/lib/HTTP/Server/Simple/Recorder.pm	(original)
+++ HTTP-Server-Simple-Recorder/lib/HTTP/Server/Simple/Recorder.pm	Thu Oct 20 03:32:51 2005
@@ -1,6 +1,6 @@
 package HTTP::Server::Simple::Recorder;
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 use warnings;
 use strict;

Modified: HTTP-Server-Simple-Recorder/t/01.live.t
==============================================================================
--- HTTP-Server-Simple-Recorder/t/01.live.t	(original)
+++ HTTP-Server-Simple-Recorder/t/01.live.t	Thu Oct 20 03:32:51 2005
@@ -20,7 +20,7 @@
     # XXX TODO FIXME should use File::Spec or whatever
     is($s->recorder_prefix, "t/logs/rec");
 
-    my $url = started_ok($s);
+    my $url = $s->started_ok("start up the web server");
 
     select(undef,undef,undef,0.2); # wait a sec
 
@@ -145,6 +145,6 @@
 
 package MyServer;
 
-use base qw/HTTP::Server::Simple::Recorder HTTP::Server::Simple::CGI/;
+use base qw/Test::HTTP::Server::Simple HTTP::Server::Simple::Recorder HTTP::Server::Simple::CGI/;
 
 sub recorder_prefix { "t/logs/rec" } 


More information about the Rt-commit mailing list