aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-02 22:13:27 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-04 11:58:40 -0300
commite1c8b9f688c56aaedac9466a4343df955b4a67ec (patch)
tree1efbc3813860de8ee91d1f1f2ef8a704bc98e9ba /activesupport/test/core_ext
parent481e49c64f790e46f4aff3ed539ed227d2eb46cb (diff)
downloadrails-e1c8b9f688c56aaedac9466a4343df955b4a67ec.tar.gz
rails-e1c8b9f688c56aaedac9466a4343df955b4a67ec.tar.bz2
rails-e1c8b9f688c56aaedac9466a4343df955b4a67ec.zip
Remove deprecated `ActiveSupport::SafeBuffer#prepend`
Diffstat (limited to 'activesupport/test/core_ext')
-rw-r--r--activesupport/test/core_ext/string_ext_test.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/activesupport/test/core_ext/string_ext_test.rb b/activesupport/test/core_ext/string_ext_test.rb
index 0af207fae9..cdc695f036 100644
--- a/activesupport/test/core_ext/string_ext_test.rb
+++ b/activesupport/test/core_ext/string_ext_test.rb
@@ -667,16 +667,6 @@ class OutputSafetyTest < ActiveSupport::TestCase
assert_equal other, "&lt;foo&gt;other"
end
- test "Deprecated #prepend! method is still present" do
- other = "other".html_safe
-
- assert_deprecated do
- other.prepend! "<foo>"
- end
-
- assert_equal other, "&lt;foo&gt;other"
- end
-
test "Concatting safe onto unsafe yields unsafe" do
@other_string = "other"