Skip to content

Commit 0279576

Browse files
committed
Merge patch in PR from GH #1237
Skip t/12_response/10_error_dumper_without_clone.t when HTTP::Message >= 6.44.
1 parent 61dc523 commit 0279576

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ A huge thank you to all of them!
6363
François Charlier <[email protected]>
6464
Gabor Szabo <[email protected]>
6565
geistteufel <[email protected]>
66+
Gregor Herrmann <[email protected]>
6667
Grzegorz Rożniecki <[email protected]>
6768
Hagen Fuchs <[email protected]>
6869
Hans Dieter Pearcey <[email protected]>

Changes

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Revision history for Dancer
1313
[BUG FIXES]
1414
- Fix test failures since YAML.pm 1.30 (GH #1208)
1515
- More test failures with proxy env var set (GH #1204)
16+
- Skip tests when HTTP::Message >= 6.44 (GH #1237)
1617

1718
[ENHANCEMENTS]
1819
- Don't show whole web page differences in Dancer::Test's

t/12_response/10_error_dumper_without_clone.t

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ use warnings;
44
BEGIN {
55
use Test::More;
66

7+
use Dancer::ModuleLoader;
8+
plan skip_all => 'skip tests with HTTP::Message >= 6.44, GH #1237'
9+
if Dancer::ModuleLoader->load('HTTP::Message' => '6.44');
710
plan skip_all => 'Devel::Hide required' unless eval 'use Devel::Hide; 1';
811
}
912

0 commit comments

Comments
 (0)