Return-Path: Delivered-To: apmail-httpd-test-cvs-archive@www.apache.org Received: (qmail 81382 invoked from network); 11 Dec 2004 19:38:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 11 Dec 2004 19:38:06 -0000 Received: (qmail 37645 invoked by uid 500); 11 Dec 2004 19:38:06 -0000 Delivered-To: apmail-httpd-test-cvs-archive@httpd.apache.org Received: (qmail 37618 invoked by uid 500); 11 Dec 2004 19:38:06 -0000 Mailing-List: contact test-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: test-dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list test-cvs@httpd.apache.org Received: (qmail 37603 invoked by uid 99); 11 Dec 2004 19:38:06 -0000 X-ASF-Spam-Status: No, hits=-10.0 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Sat, 11 Dec 2004 11:38:06 -0800 Received: (qmail 81360 invoked by uid 65534); 11 Dec 2004 19:38:04 -0000 Date: 11 Dec 2004 19:38:04 -0000 Message-ID: <20041211193804.81356.qmail@minotaur.apache.org> From: stas@apache.org To: test-cvs@httpd.apache.org Subject: svn commit: r111619 - /httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/Test.pm MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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 => \@test_more_exports); - -$VERSION = '1.17'; %SubTests = (); @SkipReasons = ();