aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-02-01 04:12:01 -0200
committerYehuda Katz <wycats@Yehuda-Katz.local>2010-01-31 22:14:18 -0800
commit1adfb9213576bd4a548a66bb46e2a2272e15e48d (patch)
tree6bd8fdaee3a24042df3cddbe4ae734a5109f7680 /actionpack/test
parent9987a0073829d4ba91585913967cdebe5cc706e4 (diff)
downloadrails-1adfb9213576bd4a548a66bb46e2a2272e15e48d.tar.gz
rails-1adfb9213576bd4a548a66bb46e2a2272e15e48d.tar.bz2
rails-1adfb9213576bd4a548a66bb46e2a2272e15e48d.zip
Deleted all references to ActionView::SafeBuffer in favor of ActiveSupport::SafeBuffer
Signed-off-by: Yehuda Katz <wycats@Yehuda-Katz.local>
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/template/safe_buffer_test.rb41
1 files changed, 0 insertions, 41 deletions
diff --git a/actionpack/test/template/safe_buffer_test.rb b/actionpack/test/template/safe_buffer_test.rb
deleted file mode 100644
index 41a95e068b..0000000000
--- a/actionpack/test/template/safe_buffer_test.rb
+++ /dev/null
@@ -1,41 +0,0 @@
-require 'abstract_unit'
-
-class SafeBufferTest < ActionView::TestCase
- def setup
- @buffer = ActionView::SafeBuffer.new
- end
-
- test "Should look like a string" do
- assert @buffer.is_a?(String)
- assert_equal "", @buffer
- end
-
- test "Should escape a raw string which is passed to them" do
- @buffer << "<script>"
- assert_equal "&lt;script&gt;", @buffer
- end
-
- test "Should NOT escape a safe value passed to it" do
- @buffer << "<script>".html_safe
- assert_equal "<script>", @buffer
- end
-
- test "Should not mess with an innocuous string" do
- @buffer << "Hello"
- assert_equal "Hello", @buffer
- end
-
- test "Should not mess with a previously escape test" do
- @buffer << ERB::Util.html_escape("<script>")
- assert_equal "&lt;script&gt;", @buffer
- end
-
- test "Should be considered safe" do
- assert @buffer.html_safe?
- end
-
- test "Should return a safe buffer when calling to_s" do
- new_buffer = @buffer.to_s
- assert_equal ActionView::SafeBuffer, new_buffer.class
- end
-end