Author: stas
Date: Sat Dec 11 11:38:04 2004
New Revision: 111619

URL: http://svn.apache.org/viewcvs?view=rev&rev=111619
Log:
move $VERSION to the top, so don't have to search it on update

Modified:
   httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/Test.pm

Modified: httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/Test.pm
Url: 
http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/Test.pm?view=diff&rev=111619&p1=httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/Test.pm&r1=111618&p2=httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/Test.pm&r2=111619
==============================================================================
--- httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/Test.pm      
(original)
+++ httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/Test.pm      Sat Dec 
11 11:38:04 2004
@@ -23,6 +23,8 @@
 
 use vars qw(@ISA @EXPORT %EXPORT_TAGS $VERSION %SubTests @SkipReasons);
 
+$VERSION = '1.17';
+
 my @need = qw(need_lwp need_http11 need_cgi need_access need_auth
               need_module need_apache need_min_apache_version
               need_apache_version need_perl need_min_perl_version
@@ -39,8 +41,6 @@
 my @test_more_exports = grep { ! /^(ok|skip|plan)$/ } @EXPORT;
 
 %EXPORT_TAGS = (withtestmore => [EMAIL PROTECTED]);
-
-$VERSION = '1.17';
 
 %SubTests = ();
 @SkipReasons = ();

Reply via email to