aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/multibyte_chars_test.rb
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2012-11-28 13:57:07 -0800
committerSteve Klabnik <steve@steveklabnik.com>2012-11-28 13:58:51 -0800
commitbd852603a18a3a9d20597382a97f9b0f5bb0fc94 (patch)
tree00c6d3415b4a90e3700a21bf73aafb88cc7e9936 /activesupport/test/multibyte_chars_test.rb
parent27b79f4c911fdfce186086cfaa6646f1c2083aa0 (diff)
downloadrails-bd852603a18a3a9d20597382a97f9b0f5bb0fc94.tar.gz
rails-bd852603a18a3a9d20597382a97f9b0f5bb0fc94.tar.bz2
rails-bd852603a18a3a9d20597382a97f9b0f5bb0fc94.zip
Simplify String#mb_chars and stop proxying #class
This behavior mattered under Ruby 1.8, but that doesn't matter now that we don't support it. In addition, we don't want to proxy the #class method. A test was added to prevent against regressions.
Diffstat (limited to 'activesupport/test/multibyte_chars_test.rb')
-rw-r--r--activesupport/test/multibyte_chars_test.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/activesupport/test/multibyte_chars_test.rb b/activesupport/test/multibyte_chars_test.rb
index ef289692bc..0088a06c34 100644
--- a/activesupport/test/multibyte_chars_test.rb
+++ b/activesupport/test/multibyte_chars_test.rb
@@ -47,7 +47,7 @@ class MultibyteCharsTest < ActiveSupport::TestCase
end
def test_methods_are_forwarded_to_wrapped_string_for_byte_strings
- assert_equal BYTE_STRING.class, BYTE_STRING.mb_chars.class
+ assert_equal BYTE_STRING.length, BYTE_STRING.mb_chars.length
end
def test_forwarded_method_with_non_string_result_should_be_returned_vertabim
@@ -673,6 +673,9 @@ class MultibyteCharsExtrasTest < ActiveSupport::TestCase
assert_equal "𥤤", chars(byte_string).tidy_bytes(true)
end
+ def test_class_is_not_forwarded
+ assert_equal BYTE_STRING.dup.mb_chars.class, ActiveSupport::Multibyte::Chars
+ end
private