From 6f559f871e9278aea65471f1ce31fab15536f56a Mon Sep 17 00:00:00 2001 From: Marcel Molina Date: Tue, 23 Oct 2007 17:57:47 +0000 Subject: Added tests for options to ActiveRecordHelper#form. Closes #7213 [richcollins, mikong, mislav] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8005 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/template/active_record_helper_test.rb | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'actionpack/test') diff --git a/actionpack/test/template/active_record_helper_test.rb b/actionpack/test/template/active_record_helper_test.rb index 6ef74aa8e7..bec29e134f 100644 --- a/actionpack/test/template/active_record_helper_test.rb +++ b/actionpack/test/template/active_record_helper_test.rb @@ -91,6 +91,8 @@ class ActiveRecordHelperTest < Test::Unit::TestCase setup_post setup_user + @response = ActionController::TestResponse.new + @controller = Object.new def @controller.url_for(options) options = options.symbolize_keys @@ -139,6 +141,13 @@ class ActiveRecordHelperTest < Test::Unit::TestCase ) end + def test_form_with_action_option + @response.body = form("post", :action => "sign") + assert_select "form[action=sign]" do |form| + assert_select "input[type=submit][value=Sign]" + end + end + def test_form_with_date silence_warnings do def Post.content_columns() [ Column.new(:date, "written_on", "Written on") ] end -- cgit v1.2.3