aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2011-03-25 00:28:47 +0100
committerXavier Noria <fxn@hashref.com>2011-04-13 13:23:16 +0200
commit3223e04a21c27a2e612fcd341e06c46433659f8d (patch)
treec3d18c5ac87c6adcfe5e3e4d4acac7a028719b14 /actionpack/test/template
parentb878757c5073eac7e4fcfd2093d38d8b841db846 (diff)
downloadrails-3223e04a21c27a2e612fcd341e06c46433659f8d.tar.gz
rails-3223e04a21c27a2e612fcd341e06c46433659f8d.tar.bz2
rails-3223e04a21c27a2e612fcd341e06c46433659f8d.zip
removes support for RJS in button_to_function
Diffstat (limited to 'actionpack/test/template')
-rw-r--r--actionpack/test/template/javascript_helper_test.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/actionpack/test/template/javascript_helper_test.rb b/actionpack/test/template/javascript_helper_test.rb
index 65b8074dbb..e8500b2d9d 100644
--- a/actionpack/test/template/javascript_helper_test.rb
+++ b/actionpack/test/template/javascript_helper_test.rb
@@ -35,20 +35,6 @@ class JavaScriptHelperTest < ActionView::TestCase
button_to_function("Greeting", "alert('Hello world!')")
end
- def test_button_to_function_with_rjs_block
- html = button_to_function( "Greet me!" ) do |page|
- page.replace_html 'header', "<h1>Greetings</h1>"
- end
- assert_dom_equal %(<input type="button" onclick="Element.update(&quot;header&quot;, &quot;\\u003Ch1\\u003EGreetings\\u003C/h1\\u003E&quot;);;" value="Greet me!" />), html
- end
-
- def test_button_to_function_with_rjs_block_and_options
- html = button_to_function( "Greet me!", :class => "greeter" ) do |page|
- page.replace_html 'header', "<h1>Greetings</h1>"
- end
- assert_dom_equal %(<input type="button" class="greeter" onclick="Element.update(&quot;header&quot;, &quot;\\u003Ch1\\u003EGreetings\\u003C\/h1\\u003E&quot;);;" value="Greet me!" />), html
- end
-
def test_button_to_function_with_onclick
assert_dom_equal "<input onclick=\"alert('Goodbye World :('); alert('Hello world!');\" type=\"button\" value=\"Greeting\" />",
button_to_function("Greeting", "alert('Hello world!')", :onclick => "alert('Goodbye World :(')")