mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Multibyte: skip String#each_char test for Ruby 1.9
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8461 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
c95002c284
commit
8e432d9a5b
1 changed files with 9 additions and 8 deletions
|
@ -167,14 +167,15 @@ class StringInflectionsTest < Test::Unit::TestCase
|
|||
assert !s.end_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|
|
||||
assert_not_equal 1, char.length
|
||||
break
|
||||
if RUBY_VERSION < '1.9'
|
||||
def test_each_char_with_utf8_string_when_kcode_is_utf8
|
||||
old_kcode, $KCODE = $KCODE, 'UTF8'
|
||||
'€2.99'.each_char do |char|
|
||||
assert_not_equal 1, char.length
|
||||
break
|
||||
end
|
||||
ensure
|
||||
$KCODE = old_kcode
|
||||
end
|
||||
ensure
|
||||
$KCODE = old_kcode
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue