added test to check that $ENV is preserved after setup is called
[catagits/HTTP-Request-AsCGI.git] / t / 02unescape.t
CommitLineData
bb6e4a92 1use strict;
2use warnings;
3use HTTP::Request::AsCGI;
4use Test::More tests => 1;
5
6is(
7 HTTP::Request::AsCGI::_uri_safe_unescape('%2Fhello%20there'),
8 '%2Fhello there',
9 'do not unescape reserved characters',
10);