1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

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
This commit is contained in:
Marcel Molina 2007-10-23 17:57:47 +00:00
parent 7b42a1d0ac
commit 6f559f871e
2 changed files with 11 additions and 0 deletions

View file

@ -1,5 +1,7 @@
*SVN*
* Added tests for options to ActiveRecordHelper#form. Closes #7213 [richcollins, mikong, mislav]
* Changed before_filter halting to happen automatically on render or redirect but no longer on simply returning false [DHH]
* Ensure that cookies handle array values correctly. Closes #9937 [queso]

View file

@ -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