aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2014-09-15 21:41:25 +0930
committerMatthew Draper <matthew@trebex.net>2014-09-15 21:41:25 +0930
commit62955c77bf380fe39005c1a7de8b8fde769af2cd (patch)
tree87940d31e4c7efdc7ed9edec666889f49a06747d /activesupport/test/core_ext
parentc0a4a300f75a1e63ab3d8d8c31315bf3e456904e (diff)
downloadrails-62955c77bf380fe39005c1a7de8b8fde769af2cd.tar.gz
rails-62955c77bf380fe39005c1a7de8b8fde769af2cd.tar.bz2
rails-62955c77bf380fe39005c1a7de8b8fde769af2cd.zip
As of Unicode 6.3, Mongolian Vowel Separator is not whitespace
Ruby 2.2 knows this, and no longer matches it with [[:space:]], so it's not a good candidate for testing String#squish.
Diffstat (limited to 'activesupport/test/core_ext')
-rw-r--r--activesupport/test/core_ext/string_ext_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/test/core_ext/string_ext_test.rb b/activesupport/test/core_ext/string_ext_test.rb
index 18b4727c3b..2f4691817f 100644
--- a/activesupport/test/core_ext/string_ext_test.rb
+++ b/activesupport/test/core_ext/string_ext_test.rb
@@ -189,10 +189,10 @@ class StringInflectionsTest < ActiveSupport::TestCase
end
def test_string_squish
- original = %{\u180E\u180E A string surrounded by unicode mongolian vowel separators,
- with tabs(\t\t), newlines(\n\n), unicode nextlines(\u0085\u0085) and many spaces( ). \u180E\u180E}
+ original = %{\u205f\u3000 A string surrounded by various unicode spaces,
+ with tabs(\t\t), newlines(\n\n), unicode nextlines(\u0085\u0085) and many spaces( ). \u00a0\u2007}
- expected = "A string surrounded by unicode mongolian vowel separators, " +
+ expected = "A string surrounded by various unicode spaces, " +
"with tabs( ), newlines( ), unicode nextlines( ) and many spaces( )."
# Make sure squish returns what we expect: