aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/raw_output_helper_test.rb
diff options
context:
space:
mode:
authorJosh Kalderimis <josh.kalderimis@gmail.com>2011-02-10 23:01:02 +0800
committerJosé Valim <jose.valim@gmail.com>2011-02-10 23:47:54 +0800
commit98c0c5db50a7679b3d58769ac22cb0a27a62c930 (patch)
tree2b1dc40e86e974c3432cd4764045f64a5e6fd30b /actionpack/test/template/raw_output_helper_test.rb
parent1a73407b8506b548a5343c66c16897140203472e (diff)
downloadrails-98c0c5db50a7679b3d58769ac22cb0a27a62c930.tar.gz
rails-98c0c5db50a7679b3d58769ac22cb0a27a62c930.tar.bz2
rails-98c0c5db50a7679b3d58769ac22cb0a27a62c930.zip
Removed Array#safe_join in AS core_ext and moved it to a view helper with the same same.
Diffstat (limited to 'actionpack/test/template/raw_output_helper_test.rb')
-rw-r--r--actionpack/test/template/raw_output_helper_test.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/actionpack/test/template/raw_output_helper_test.rb b/actionpack/test/template/raw_output_helper_test.rb
deleted file mode 100644
index 598aa5b1d8..0000000000
--- a/actionpack/test/template/raw_output_helper_test.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-require 'abstract_unit'
-require 'testing_sandbox'
-
-class RawOutputHelperTest < ActionView::TestCase
- tests ActionView::Helpers::RawOutputHelper
- include TestingSandbox
-
- def setup
- @string = "hello"
- end
-
- test "raw returns the safe string" do
- result = raw(@string)
- assert_equal @string, result
- assert result.html_safe?
- end
-
- test "raw handles nil values correctly" do
- assert_equal "", raw(nil)
- end
-end \ No newline at end of file