aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/view
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-10-10 20:19:47 -0500
committerJoshua Peek <josh@joshpeek.com>2009-10-10 21:30:51 -0500
commit1610cd0827129c28518ee6586d8ecf922576bf20 (patch)
tree1598a7aebe1625b0a4448edb372183a932b15612 /actionpack/test/view
parent21be1dcffa98321fc999e39d11e902d717affad1 (diff)
downloadrails-1610cd0827129c28518ee6586d8ecf922576bf20.tar.gz
rails-1610cd0827129c28518ee6586d8ecf922576bf20.tar.bz2
rails-1610cd0827129c28518ee6586d8ecf922576bf20.zip
Move safe buffer into test/template
Diffstat (limited to 'actionpack/test/view')
-rw-r--r--actionpack/test/view/safe_buffer_test.rb41
1 files changed, 0 insertions, 41 deletions
diff --git a/actionpack/test/view/safe_buffer_test.rb b/actionpack/test/view/safe_buffer_test.rb
deleted file mode 100644
index 2236709627..0000000000
--- a/actionpack/test/view/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 << CGI.escapeHTML("<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