mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Added missing assert to test checking form with namespaced isolated model and fixed helpers to work correctly in such case
This commit is contained in:
@@ -40,7 +40,7 @@ module ActionController
|
||||
# dom_class(post, :edit) # => "edit_post"
|
||||
# dom_class(Person, :edit) # => "edit_person"
|
||||
def dom_class(record_or_class, prefix = nil)
|
||||
singular = ActiveModel::Naming.singular(record_or_class)
|
||||
singular = ActiveModel::Naming.param_key(record_or_class)
|
||||
prefix ? "#{prefix}#{JOIN}#{singular}" : singular
|
||||
end
|
||||
|
||||
|
||||
@@ -696,13 +696,13 @@ class FormHelperTest < ActionView::TestCase
|
||||
concat f.submit('Edit post')
|
||||
end
|
||||
|
||||
expected =
|
||||
"<form accept-charset='UTF-8' action='/posts/44' method='post'>" +
|
||||
snowman +
|
||||
"<label for='post_title'>The Title</label>" +
|
||||
expected = whole_form("/posts/44", "edit_post_44" , "edit_post", :method => "put") do
|
||||
"<input name='post[title]' size='30' type='text' id='post_title' value='And his name will be forty and four.' />" +
|
||||
"<input name='commit' id='post_submit' type='submit' value='Edit post' />" +
|
||||
"<input name='commit' type='submit' value='Edit post' />" +
|
||||
"</form>"
|
||||
end
|
||||
|
||||
assert_dom_equal expected, output_buffer
|
||||
end
|
||||
|
||||
def test_form_for_with_symbol_object_name
|
||||
|
||||
Reference in New Issue
Block a user