1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

Update to 0.51

This commit is contained in:
Lars Balker Rasmussen 2009-03-21 23:03:13 +00:00
parent cbee16e09d
commit 3aaa558b6a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=230611
3 changed files with 19 additions and 16 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= Test-WWW-Mechanize-Catalyst
PORTVERSION= 0.45
PORTVERSION= 0.51
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@ -17,15 +17,16 @@ COMMENT= Test::WWW::Mechanize for Catalyst
RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:${PORTSDIR}/www/p5-Catalyst-Runtime \
p5-libwww>=5.816:${PORTSDIR}/www/p5-libwww \
p5-Test-WWW-Mechanize>=1.14:${PORTSDIR}/devel/p5-Test-WWW-Mechanize \
p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception \
p5-WWW-Mechanize>=1.50:${PORTSDIR}/www/p5-WWW-Mechanize \
p5-Catalyst-Plugin-Session>=0:${PORTSDIR}/www/p5-Catalyst-Plugin-Session \
p5-Catalyst-Plugin-Session-State-Cookie>=0:${PORTSDIR}/www/p5-Catalyst-Plugin-Session-State-Cookie
p5-Moose>=0.67:${PORTSDIR}/devel/p5-Moose \
p5-namespace-clean>=0.09:${PORTSDIR}/devel/p5-namespace-clean
BUILD_DEPENDS= ${RUN_DEPENDS}
PERL_CONFIGURE= 5.8.1+
MAN3= Test::WWW::Mechanize::Catalyst.3
post-extract:
@${PERL} -i -ne 'print unless m,^test_requires,' ${WRKSRC}/Makefile.PL
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (Test-WWW-Mechanize-Catalyst-0.45.tar.gz) = bb6a345c2f101f417a5473cdd48a8d54
SHA256 (Test-WWW-Mechanize-Catalyst-0.45.tar.gz) = ce130fd33882bf969280eb7053de5bb103cedf87376fdce6415fec1521f83d42
SIZE (Test-WWW-Mechanize-Catalyst-0.45.tar.gz) = 9613
MD5 (Test-WWW-Mechanize-Catalyst-0.51.tar.gz) = 4ff6728c1bd8ba0cc09c3aa192646dd7
SHA256 (Test-WWW-Mechanize-Catalyst-0.51.tar.gz) = 69de7f08ad33ccf88dfd12eaa4be959cbd0635c045fbd6fea02e04658555a799
SIZE (Test-WWW-Mechanize-Catalyst-0.51.tar.gz) = 24623

View File

@ -1,13 +1,15 @@
Test::WWW::Mechanize is a subclass of WWW::Mechanize that incorporates
features for web application testing. The Test::WWW::Mechanize::Catalyst
module meshes the two to allow easy testing of Catalyst applications
without starting up a web server.
Testing web applications has always been a bit tricky, normally starting
a web server for your application and making real HTTP requests to it.
This module allows you to test Catalyst web applications but does not
start a server or issue HTTP requests. Instead, it passes the HTTP
request object directly to Catalyst. Thus you do not need to use a real
hostname: "http://localhost/" will do.
without needing to starting up a web server.
Testing web applications has always been a bit tricky, normally
requiring starting a web server for your application and making real
HTTP requests to it. This module allows you to test Catalyst web
applications but does not require a server or issue HTTP requests.
Instead, it passes the HTTP request object directly to Catalyst. Thus
you do not need to use a real hostname: "http://localhost/" will do.
However, this is optional. The following two lines of code do exactly
the same thing:
WWW: http://search.cpan.org/dist/Test-WWW-Mechanize-Catalyst/