# HG changeset patch # User Maxim Dounin # Date 1261662431 -10800 # Node ID 18fc08c160ce1c30e0a92cc1e4a2546fe68fabad # Parent 4bf7a819358cd2ad53f40cc4562a38f11964f068 Tests: caseless regex locations fixed in 0.8.31. diff --git a/http-location.t b/http-location.t --- a/http-location.t +++ b/http-location.t @@ -76,14 +76,7 @@ like(http_get('/'), qr/X-Location: exact like(http_get('/x'), qr/X-Location: root/, 'root'); like(http_get('/images/t.gif'), qr/X-Location: images/, 'images'); like(http_get('/t.gif'), qr/X-Location: regex/, 'regex'); - -{ -local $TODO = 'broken in 0.8.25'; - like(http_get('/t.GIF'), qr/X-Location: regex/, 'regex with mungled case'); - -} - like(http_get('/casefull/t.gif'), qr/X-Location: regex/, 'first regex wins'); like(http_get('/casefull/'), qr/X-Location: casefull/, 'casefull regex'); like(http_get('/CASEFULL/'), qr/X-Location: root/,