From a308ff0cdd573c2c71a7126d71089692d7dc8710 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Fri, 8 Jun 2007 22:20:18 +0000 Subject: Test javascript_tag. Closes #7239. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6977 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/template/javascript_helper_test.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'actionpack') diff --git a/actionpack/test/template/javascript_helper_test.rb b/actionpack/test/template/javascript_helper_test.rb index da574624ec..08bbd5e95f 100644 --- a/actionpack/test/template/javascript_helper_test.rb +++ b/actionpack/test/template/javascript_helper_test.rb @@ -69,4 +69,14 @@ class JavaScriptHelperTest < Test::Unit::TestCase end assert_dom_equal %(), html end + + def test_javascript_tag + assert_dom_equal "", + javascript_tag("alert('hello')") + end + + def test_javascript_tag_with_options + assert_dom_equal "", + javascript_tag("alert('hello')", :id => "the_js_tag") + end end -- cgit v1.2.3