mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04: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:
@@ -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]
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user