summaryrefslogtreecommitdiff
path: root/test/uri/test_parser.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/uri/test_parser.rb')
-rw-r--r--test/uri/test_parser.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/uri/test_parser.rb b/test/uri/test_parser.rb
index 757ac86c74..b9cf4b7e1a 100644
--- a/test/uri/test_parser.rb
+++ b/test/uri/test_parser.rb
@@ -45,4 +45,11 @@ class URI::TestParser < Test::Unit::TestCase
URI.parse(1)
end
end
+
+ def test_unescape
+ p1 = URI::Parser.new
+ assert_equal("\xe3\x83\x90", p1.unescape("\xe3\x83\x90"))
+ assert_equal("\xe3\x83\x90", p1.unescape('%e3%83%90'))
+ assert_equal("\xe3\x83\x90\xe3\x83\x90", p1.unescape("\xe3\x83\x90%e3%83%90"))
+ end
end