aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-06-08 01:30:47 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-06-08 01:30:47 +0000
commitbab8966064902264768016b54e8e2a8bed3b68ba (patch)
tree5448718dda3d8ea5f739dd1f908ec1c400ee5b4b /actionpack
parent271404e8b929a5904dfe1a7007bee340139b6576 (diff)
downloadrails-bab8966064902264768016b54e8e2a8bed3b68ba.tar.gz
rails-bab8966064902264768016b54e8e2a8bed3b68ba.tar.bz2
rails-bab8966064902264768016b54e8e2a8bed3b68ba.zip
Test periodically_call_remote with frequency. Closes #7244 [Rich Collins]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6963 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/template/prototype_helper_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/test/template/prototype_helper_test.rb b/actionpack/test/template/prototype_helper_test.rb
index c08bf9c85e..7e60e0750a 100644
--- a/actionpack/test/template/prototype_helper_test.rb
+++ b/actionpack/test/template/prototype_helper_test.rb
@@ -81,6 +81,13 @@ class PrototypeHelperTest < Test::Unit::TestCase
periodically_call_remote(:update => "schremser_bier", :url => { :action => "mehr_bier" })
end
+ def test_periodically_call_remote_with_frequency
+ assert_dom_equal(
+ "<script type=\"text/javascript\">\n//<![CDATA[\nnew PeriodicalExecuter(function() {new Ajax.Request('http://www.example.com/', {asynchronous:true, evalScripts:true})}, 2)\n//]]>\n</script>",
+ periodically_call_remote(:frequency => 2)
+ )
+ end
+
def test_form_remote_tag
assert_dom_equal %(<form action=\"http://www.example.com/fast\" method=\"post\" onsubmit=\"new Ajax.Updater('glass_of_beer', 'http://www.example.com/fast', {asynchronous:true, evalScripts:true, parameters:Form.serialize(this)}); return false;\">),
form_remote_tag(:update => "glass_of_beer", :url => { :action => :fast })