summaryrefslogtreecommitdiff
path: root/t/escape.t
diff options
context:
space:
mode:
authorGisle Aas <gisle@aas.no>2010-08-22 15:41:50 +0200
committerGisle Aas <gisle@aas.no>2010-08-22 15:41:50 +0200
commit6b6a2c73d1fdc5cea062f82a8667394727baa9fa (patch)
tree596f448a6616a0f9d0f817d90fceda57f02f5195 /t/escape.t
parentd68f48165a1abe746fab5f2844acb23dcef17857 (diff)
downloaduri-6b6a2c73d1fdc5cea062f82a8667394727baa9fa.tar.gz
" is not a URI character [RT#56421]
Diffstat (limited to 't/escape.t')
-rw-r--r--t/escape.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/escape.t b/t/escape.t
index 7867160..8666c22 100644
--- a/t/escape.t
+++ b/t/escape.t
@@ -3,7 +3,7 @@
use strict;
use warnings;
-use Test::More tests => 11;
+use Test::More tests => 12;
use URI::Escape;
@@ -13,6 +13,7 @@ is uri_escape("abc", "b-d"), "a%62%63";
# New escapes in RFC 3986
is uri_escape("~*'()"), "~%2A%27%28%29";
+is uri_escape("<\">"), "%3C%22%3E";
is uri_escape(undef), undef;