diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-02 22:13:27 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-04 11:58:40 -0300 |
commit | e1c8b9f688c56aaedac9466a4343df955b4a67ec (patch) | |
tree | 1efbc3813860de8ee91d1f1f2ef8a704bc98e9ba /activesupport/test/core_ext | |
parent | 481e49c64f790e46f4aff3ed539ed227d2eb46cb (diff) | |
download | rails-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.rb | 10 |
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, "<foo>other" end - test "Deprecated #prepend! method is still present" do - other = "other".html_safe - - assert_deprecated do - other.prepend! "<foo>" - end - - assert_equal other, "<foo>other" - end - test "Concatting safe onto unsafe yields unsafe" do @other_string = "other" |