aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2013-08-03 10:31:50 -0700
committerGuillermo Iguaran <guilleiguaran@gmail.com>2013-08-03 10:31:50 -0700
commit50029ba5a125477b9a0cc17af4c474ddf8a61cae (patch)
treea7ec6aa3072c357622fdb092eb3744bc398738bc /activesupport/test
parent51c61cfbc8ade02afbda319f9a61dda65dcb98ec (diff)
parentab5e99ed63e7b2cec5a4e8b36c349b02f414025b (diff)
downloadrails-50029ba5a125477b9a0cc17af4c474ddf8a61cae.tar.gz
rails-50029ba5a125477b9a0cc17af4c474ddf8a61cae.tar.bz2
rails-50029ba5a125477b9a0cc17af4c474ddf8a61cae.zip
Merge pull request #11736 from gaurish/avoid-multibyte-method-define
[JRuby] Avoid calling define_method with non-english chars in InflectorTest
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/inflector_test.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/activesupport/test/inflector_test.rb b/activesupport/test/inflector_test.rb
index f3bf29881c..1bb2d7e920 100644
--- a/activesupport/test/inflector_test.rb
+++ b/activesupport/test/inflector_test.rb
@@ -76,9 +76,10 @@ class InflectorTest < ActiveSupport::TestCase
ActiveSupport::Inflector.inflections.uncountable "series" # Return to normal
end
- MixtureToTitleCase.each do |before, titleized|
- define_method "test_titleize_#{before}" do
- assert_equal(titleized, ActiveSupport::Inflector.titleize(before))
+ MixtureToTitleCase.each_with_index do |(before, titleized), index|
+ define_method "test_titleize_mixture_to_title_case_#{index}" do
+ assert_equal(titleized, ActiveSupport::Inflector.titleize(before), "mixture \
+ to TitleCase failed for #{before}")
end
end