aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/string_ext_test.rb
diff options
context:
space:
mode:
authorwycats <wycats@gmail.com>2010-05-17 19:41:54 +0400
committerwycats <wycats@gmail.com>2010-05-17 19:41:54 +0400
commit80b60671f7216c571ea8711d1de8ca824aefbe54 (patch)
treec84be59be24bbd978b257ac526eb9b0f9051389f /activesupport/test/core_ext/string_ext_test.rb
parent5371242384171dc0255716e31e9257ddeec17d10 (diff)
downloadrails-80b60671f7216c571ea8711d1de8ca824aefbe54.tar.gz
rails-80b60671f7216c571ea8711d1de8ca824aefbe54.tar.bz2
rails-80b60671f7216c571ea8711d1de8ca824aefbe54.zip
Revert "Moved encoding work in progress to a feature branch."
This reverts commit ade756fe42423033bae8e5aea8f58782f7a6c517.
Diffstat (limited to 'activesupport/test/core_ext/string_ext_test.rb')
-rw-r--r--activesupport/test/core_ext/string_ext_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/string_ext_test.rb b/activesupport/test/core_ext/string_ext_test.rb
index 97b08da0e4..09ce39bae2 100644
--- a/activesupport/test/core_ext/string_ext_test.rb
+++ b/activesupport/test/core_ext/string_ext_test.rb
@@ -439,6 +439,14 @@ class OutputSafetyTest < ActiveSupport::TestCase
test 'emits normal string yaml' do
assert_equal 'foo'.to_yaml, 'foo'.html_safe.to_yaml(:foo => 1)
end
+
+ test 'knows whether it is encoding aware' do
+ if RUBY_VERSION >= "1.9"
+ assert 'ruby'.encoding_aware?
+ else
+ assert !'ruby'.encoding_aware?
+ end
+ end
end
class StringExcludeTest < ActiveSupport::TestCase