You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by ph...@apache.org on 2009/03/30 20:03:27 UTC

svn commit: r760074 - in /perl/Apache-Bootstrap/trunk: Changes lib/Apache/Bootstrap.pm t/00-load.t

Author: phred
Date: Mon Mar 30 18:03:27 2009
New Revision: 760074

URL: http://svn.apache.org/viewvc?rev=760074&view=rev
Log:
0.05 to CPAN.

Modified:
    perl/Apache-Bootstrap/trunk/Changes
    perl/Apache-Bootstrap/trunk/lib/Apache/Bootstrap.pm
    perl/Apache-Bootstrap/trunk/t/00-load.t

Modified: perl/Apache-Bootstrap/trunk/Changes
URL: http://svn.apache.org/viewvc/perl/Apache-Bootstrap/trunk/Changes?rev=760074&r1=760073&r2=760074&view=diff
==============================================================================
--- perl/Apache-Bootstrap/trunk/Changes (original)
+++ perl/Apache-Bootstrap/trunk/Changes Mon Mar 30 18:03:27 2009
@@ -1,6 +1,9 @@
 Revision history for Apache-Bootstrap
 
-0.05-rc1
+0.05 Mon Mar 30 10:25:54 PST 2009
+    - change apache test check for wrong version instead of valid a:t config
+
+0.05-rc1 Mon Jan 21 14:34:83 PST 2009
     - code imported to ASF repository, thanks to pgollucci
 
 0.04_02  Sat Nov 08 17:07:56 PST 2008

Modified: perl/Apache-Bootstrap/trunk/lib/Apache/Bootstrap.pm
URL: http://svn.apache.org/viewvc/perl/Apache-Bootstrap/trunk/lib/Apache/Bootstrap.pm?rev=760074&r1=760073&r2=760074&view=diff
==============================================================================
--- perl/Apache-Bootstrap/trunk/lib/Apache/Bootstrap.pm (original)
+++ perl/Apache-Bootstrap/trunk/lib/Apache/Bootstrap.pm Mon Mar 30 18:03:27 2009
@@ -9,7 +9,7 @@
 
 =cut
 
-our $VERSION = '0.05-rc1';
+our $VERSION = '0.05';
 
 use constant MIN_MP2_VER => '1.99022';    # mp2 renaming
 

Modified: perl/Apache-Bootstrap/trunk/t/00-load.t
URL: http://svn.apache.org/viewvc/perl/Apache-Bootstrap/trunk/t/00-load.t?rev=760074&r1=760073&r2=760074&view=diff
==============================================================================
--- perl/Apache-Bootstrap/trunk/t/00-load.t (original)
+++ perl/Apache-Bootstrap/trunk/t/00-load.t Mon Mar 30 18:03:27 2009
@@ -62,13 +62,12 @@
     # need a bootstrap object
     my $bootstrap = $dual_bootstrap || $mp2_bootstrap || $mp1_bootstrap;
 
-    my $at_version = $bootstrap->check_for_apache_test;
+    my $at_version = $bootstrap->check_for_apache_test(
+        $Apache::Test::VERSION + 0.01);
 
-    cmp_ok( $at_version, '==', $Apache::Test::VERSION, 'check a:t version' );
+    ok(!$at_version, 'check for non existing a:t version (+0.01)');
 }
 
-# TODO - figure out how to test absence of apache::test
-
 # delete mod_perl from INC
 delete $INC{'mod_perl.pm'};