Return-Path: Delivered-To: apmail-httpd-test-cvs-archive@www.apache.org Received: (qmail 31305 invoked from network); 3 Dec 2004 19:51:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 3 Dec 2004 19:51:04 -0000 Received: (qmail 72150 invoked by uid 500); 3 Dec 2004 19:50:54 -0000 Delivered-To: apmail-httpd-test-cvs-archive@httpd.apache.org Received: (qmail 72010 invoked by uid 500); 3 Dec 2004 19:50:53 -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 71915 invoked by uid 99); 3 Dec 2004 19:50:51 -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; Fri, 03 Dec 2004 11:50:51 -0800 Received: (qmail 31219 invoked by uid 65534); 3 Dec 2004 19:50:49 -0000 Date: 3 Dec 2004 19:50:49 -0000 Message-ID: <20041203195049.31217.qmail@minotaur.apache.org> From: nd@apache.org To: test-cvs@httpd.apache.org Subject: svn commit: r109721 - in httpd/test/trunk/perl-framework: Apache-Test/t Apache-Test/t/cgi-bin t/htdocs/modules/cgi t/modules 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: nd Date: Fri Dec 3 11:50:48 2004 New Revision: 109721 URL: http://svn.apache.org/viewcvs?view=rev&rev=109721 Log: svn:eol-style = native Modified: httpd/test/trunk/perl-framework/Apache-Test/t/cgi-bin/cookies.pl.PL (props changed) httpd/test/trunk/perl-framework/Apache-Test/t/cookies.t (contents, props changed) httpd/test/trunk/perl-framework/t/htdocs/modules/cgi/not-modified.pl.PL (props changed) httpd/test/trunk/perl-framework/t/htdocs/modules/cgi/nph-102.pl.PL (props changed) httpd/test/trunk/perl-framework/t/modules/proxy.t (props changed) Modified: httpd/test/trunk/perl-framework/Apache-Test/t/cookies.t Url: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/Apache-Test/t/cookies.t?view=diff&rev=109721&p1=httpd/test/trunk/perl-framework/Apache-Test/t/cookies.t&r1=109720&p2=httpd/test/trunk/perl-framework/Apache-Test/t/cookies.t&r2=109721 ============================================================================== --- httpd/test/trunk/perl-framework/Apache-Test/t/cookies.t (original) +++ httpd/test/trunk/perl-framework/Apache-Test/t/cookies.t Fri Dec 3 11:50:48 2004 @@ -1,18 +1,18 @@ -# this test tests how a cookie jar can be passed (needs lwp) - -use strict; -use warnings FATAL => 'all'; - -use Apache::Test; -use Apache::TestRequest; -use Apache::TestUtil; - -plan tests => 2, need [qw(CGI CGI::Cookie)], - need_module('mod_cgi.c'), need_lwp; - -Apache::TestRequest::user_agent( cookie_jar => {} ); - -my $url = '/cgi-bin/cookies.pl'; - -ok t_cmp GET_BODY($url), 'new', "new cookie"; -ok t_cmp GET_BODY($url), 'exists', "existing cookie"; +# this test tests how a cookie jar can be passed (needs lwp) + +use strict; +use warnings FATAL => 'all'; + +use Apache::Test; +use Apache::TestRequest; +use Apache::TestUtil; + +plan tests => 2, need [qw(CGI CGI::Cookie)], + need_module('mod_cgi.c'), need_lwp; + +Apache::TestRequest::user_agent( cookie_jar => {} ); + +my $url = '/cgi-bin/cookies.pl'; + +ok t_cmp GET_BODY($url), 'new', "new cookie"; +ok t_cmp GET_BODY($url), 'exists', "existing cookie";