convert repository to git
[catagits/HTTP-Request-AsCGI.git] / t / 02unescape.t
1 use strict;
2 use warnings;
3 use HTTP::Request::AsCGI;
4 use Test::More tests => 1;
5
6 is(
7   HTTP::Request::AsCGI::_uri_safe_unescape('%2Fhello%20there'),
8   '%2Fhello there',
9   'do not unescape reserved characters',
10 );