Skip to content

Commit

Permalink
Bump HTTP::Daemon test dependency to 6.10
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed May 26, 2020
1 parent f1a0235 commit 943a16e
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 6 deletions.
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Revision history for WWW::Mechanize

{{$NEXT}}
- Bump HTTP::Daemon test dependency to 6.10 (GH#300) (Olaf Alders)

1.98 2020-05-25 17:06:47Z (TRIAL RELEASE)
- Don't make assumptions about port 80 in test (GH#299) (Olaf Alders)
Expand Down
1 change: 1 addition & 0 deletions dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Scalar::Util = 1.14

[Prereqs / TestRequires]
CGI = 4.32
HTTP::Daemon = 6.10

[Prereqs / DevelopRequires]
LWP::Protocol::https = 6.07
Expand Down
1 change: 0 additions & 1 deletion t/local/back.t
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ use strict;
use Test::More tests => 47;
use lib qw( t t/local );
use LocalServer;
use HTTP::Daemon 6.05;
use HTTP::Response;


Expand Down
2 changes: 1 addition & 1 deletion t/local/log-server
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Thanks to merlyn for nudging me and giving me this snippet!
use strict;
use HTTP::Daemon 6.05;
use HTTP::Daemon ();
use CGI 4.08;
use Getopt::Long;
use Socket ();
Expand Down
2 changes: 1 addition & 1 deletion t/local/referer-server
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Thanks to merlyn for nudging me and giving me this snippet!

use HTTP::Daemon 6.05;
use HTTP::Daemon ();
use URI::URL;
use Socket ();

Expand Down
3 changes: 0 additions & 3 deletions t/local/referer.t
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ my $agent = WWW::Mechanize->new();
isa_ok( $agent, 'WWW::Mechanize' );

SKIP: {
eval { require HTTP::Daemon; HTTP::Daemon->VERSION(6.05); };
skip 'HTTP::Daemon required to test the referrer header',10 if $@;

# We want to be safe from non-resolving local host names
delete $ENV{HTTP_PROXY};

Expand Down

0 comments on commit 943a16e

Please sign in to comment.