aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2006-03-19 19:40:11 +0000
committerRick Olson <technoweenie@gmail.com>2006-03-19 19:40:11 +0000
commitf49ba114dbb330c1865682c111a9ba372cb40bda (patch)
treebabadef041ae5c086a0085d4d4da748fd4c9e63d /actionpack/test
parenta6cfb4e0e4209e06b4ba561b688ee2c3b942e3dd (diff)
downloadrails-f49ba114dbb330c1865682c111a9ba372cb40bda.tar.gz
rails-f49ba114dbb330c1865682c111a9ba372cb40bda.tar.bz2
rails-f49ba114dbb330c1865682c111a9ba372cb40bda.zip
Add :script option to in_place_editor to support evalScripts (closes #4194) [codyfauser@gmail.com]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3985 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/template/java_script_macros_helper_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/test/template/java_script_macros_helper_test.rb b/actionpack/test/template/java_script_macros_helper_test.rb
index 1a18c00e72..59fe2398e5 100644
--- a/actionpack/test/template/java_script_macros_helper_test.rb
+++ b/actionpack/test/template/java_script_macros_helper_test.rb
@@ -91,4 +91,11 @@ class JavaScriptMacrosHelperTest < Test::Unit::TestCase
:load_text_url => { :action => "action_to_get_value" })
end
+ def test_in_place_editor_eval_scripts
+ assert_match "Ajax.InPlaceEditor('id-goes-here', 'http://www.example.com/action_to_set_value', {evalScripts:true})",
+ in_place_editor( 'id-goes-here',
+ :url => { :action => "action_to_set_value" },
+ :script => true )
+ end
+
end