aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/javascript_helper_test.rb
diff options
context:
space:
mode:
authorCarlhuda <carlhuda@engineyard.com>2010-03-09 18:00:28 -0800
committerwycats <wycats@gmail.com>2010-03-09 23:44:12 -0800
commit4464b8e87bedd69816d4658c9386cc360affb62e (patch)
tree72598e47159bbdf36cdb4fcfd31682dce4877b9e /actionpack/test/template/javascript_helper_test.rb
parentf30b7a0903ac1859a139bce96856d228c59a80b7 (diff)
downloadrails-4464b8e87bedd69816d4658c9386cc360affb62e.tar.gz
rails-4464b8e87bedd69816d4658c9386cc360affb62e.tar.bz2
rails-4464b8e87bedd69816d4658c9386cc360affb62e.zip
Deprecate block_called_from_erb? pending a solution for getting it into apps
Diffstat (limited to 'actionpack/test/template/javascript_helper_test.rb')
-rw-r--r--actionpack/test/template/javascript_helper_test.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/actionpack/test/template/javascript_helper_test.rb b/actionpack/test/template/javascript_helper_test.rb
index 6604f1c095..f49b763881 100644
--- a/actionpack/test/template/javascript_helper_test.rb
+++ b/actionpack/test/template/javascript_helper_test.rb
@@ -74,18 +74,6 @@ class JavaScriptHelperTest < ActionView::TestCase
javascript_tag("alert('hello')", :id => "the_js_tag")
end
- def test_javascript_tag_with_block_in_erb
- __in_erb_template = ''
- javascript_tag { concat "alert('hello')" }
- assert_dom_equal "<script type=\"text/javascript\">\n//<![CDATA[\nalert('hello')\n//]]>\n</script>", output_buffer
- end
-
- def test_javascript_tag_with_block_and_options_in_erb
- __in_erb_template = ''
- javascript_tag(:id => "the_js_tag") { concat "alert('hello')" }
- assert_dom_equal "<script id=\"the_js_tag\" type=\"text/javascript\">\n//<![CDATA[\nalert('hello')\n//]]>\n</script>", output_buffer
- end
-
def test_javascript_cdata_section
assert_dom_equal "\n//<![CDATA[\nalert('hello')\n//]]>\n", javascript_cdata_section("alert('hello')")
end