diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-02-26 07:23:42 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-02-26 07:23:42 +0000 |
commit | 6a83ebfe703e922c4b0e2333521ed23208003f13 (patch) | |
tree | 83259ddbb5d8b1c0d9fbdac6b66c2b5c3ece23e9 /actionpack/test/template | |
parent | 841d596c24f0775d8f6b264b7d8f7ba689157ed9 (diff) | |
download | rails-6a83ebfe703e922c4b0e2333521ed23208003f13.tar.gz rails-6a83ebfe703e922c4b0e2333521ed23208003f13.tar.bz2 rails-6a83ebfe703e922c4b0e2333521ed23208003f13.zip |
Fixed form_for regression (closes #3962) [t.lucas@toolmantim.com]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3666 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/template')
-rw-r--r-- | actionpack/test/template/form_helper_test.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb index f0e1522807..cfeff6d7a7 100644 --- a/actionpack/test/template/form_helper_test.rb +++ b/actionpack/test/template/form_helper_test.rb @@ -30,7 +30,9 @@ class FormHelperTest < Test::Unit::TestCase @post.written_on = Date.new(2004, 6, 15) @controller = Class.new do + attr_reader :url_for_options def url_for(options, *parameters_for_method_reference) + @url_for_options = options "http://www.example.com" end end @@ -355,6 +357,23 @@ class FormHelperTest < Test::Unit::TestCase assert_dom_equal expected, _erbout end + def test_form_for_with_string_url_option + _erbout = '' + + form_for(:post, @post, :url => 'http://www.otherdomain.com') do |f| end + + assert_equal 'http://www.otherdomain.com', @controller.url_for_options + end + + def test_form_for_with_hash_url_option + _erbout = '' + + form_for(:post, @post, :url => {:controller => 'controller', :action => 'action'}) do |f| end + + assert_equal 'controller', @controller.url_for_options[:controller] + assert_equal 'action', @controller.url_for_options[:action] + end + def test_remote_form_for_with_html_options_adds_options_to_form_tag self.extend ActionView::Helpers::PrototypeHelper _erbout = '' |