aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/uri_ext_test.rb
diff options
context:
space:
mode:
authormoro <moronatural@gmail.com>2009-02-15 19:34:04 +0900
committerJeremy Kemper <jeremy@bitsweat.net>2009-02-20 18:18:39 -0800
commit3b3dbd797397fe692fa50bdb46a0db06b82bf848 (patch)
tree3df7a5dbb4ed5bd4329883b5ec4a8a38605c8b63 /activesupport/test/core_ext/uri_ext_test.rb
parent8c5cc66a831aadb159f3daaffa4208064c30af0e (diff)
downloadrails-3b3dbd797397fe692fa50bdb46a0db06b82bf848.tar.gz
rails-3b3dbd797397fe692fa50bdb46a0db06b82bf848.tar.bz2
rails-3b3dbd797397fe692fa50bdb46a0db06b82bf848.zip
Ruby 1.9.1p0's URI.decode() bug fix
backport to fix Ruby 1.9.1p0 bug on [ruby-dev:38005]. Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
Diffstat (limited to 'activesupport/test/core_ext/uri_ext_test.rb')
-rw-r--r--activesupport/test/core_ext/uri_ext_test.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/uri_ext_test.rb b/activesupport/test/core_ext/uri_ext_test.rb
new file mode 100644
index 0000000000..f25bc97aa5
--- /dev/null
+++ b/activesupport/test/core_ext/uri_ext_test.rb
@@ -0,0 +1,11 @@
+require 'abstract_unit'
+
+class URITest < Test::Unit::TestCase
+ def test_uri_decode_handle_multibyte
+ str = "\xE6\x97\xA5\xE6\x9C\xAC\xE8\xAA\x9E" # Ni-ho-nn-go in UTF-8, means Japanese.
+ str.force_encoding(Encoding::UTF_8) if(defined? Encoding::UTF_8)
+
+ assert_equal str, ::URI.unescape( ::URI.escape(str) )
+ assert_equal str, ::URI.decode( ::URI.escape(str) )
+ end
+end