aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-09-27 10:21:39 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-09-27 10:21:39 +0000
commit42bc9b3b16581ecc3915b1f1205850b9b337c686 (patch)
treefb5d04147d4664747808a74300fe547a60f1b792 /activesupport
parentdb9b2f5c228289b3da82d231b985c910e12d969c (diff)
downloadrails-42bc9b3b16581ecc3915b1f1205850b9b337c686.tar.gz
rails-42bc9b3b16581ecc3915b1f1205850b9b337c686.tar.bz2
rails-42bc9b3b16581ecc3915b1f1205850b9b337c686.zip
Mark String#each_char test failing with Ruby 1.9
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7656 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/test/core_ext/string_ext_test.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/string_ext_test.rb b/activesupport/test/core_ext/string_ext_test.rb
index 734974956b..9c199e1e79 100644
--- a/activesupport/test/core_ext/string_ext_test.rb
+++ b/activesupport/test/core_ext/string_ext_test.rb
@@ -146,6 +146,7 @@ class StringInflectionsTest < Test::Unit::TestCase
assert !s.ends_with?('el')
end
+ # FIXME: Ruby 1.9
def test_each_char_with_utf8_string_when_kcode_is_utf8
old_kcode, $KCODE = $KCODE, 'UTF8'
'€2.99'.each_char do |char|