提交 03d30ce7 编写于 作者: S schneems

remove un-needed sort

HTML doesn't care what order the elements are rendered in, so why should we?

Updates tests to use proper `assert_dom_equal` instead of `assert_equal` /cc @jeremy
上级 01aefa5b
......@@ -160,7 +160,7 @@ def tag_options(options, escape = true)
attrs << tag_option(key, value, escape)
end
end
" #{attrs.sort! * ' '}" unless attrs.empty?
" #{attrs * ' '}" unless attrs.empty?
end
def prefix_tag_option(prefix, key, value, escape)
......
......@@ -302,7 +302,7 @@ def test_autodiscovery_link_tag_with_unknown_type_but_not_pass_type_option_key
def test_autodiscovery_link_tag_with_unknown_type
result = auto_discovery_link_tag(:xml, '/feed.xml', :type => 'application/xml')
expected = %(<link href="/feed.xml" rel="alternate" title="XML" type="application/xml" />)
assert_equal expected, result
assert_dom_equal expected, result
end
def test_asset_path_tag
......
......@@ -329,7 +329,7 @@ def test_label_with_block_and_builder
end
def test_label_with_block_in_erb
assert_equal(
assert_dom_equal(
%{<label for="post_message">\n Message\n <input id="post_message" name="post[message]" type="text" />\n</label>},
view.render("test/label_with_block")
)
......@@ -469,8 +469,7 @@ def test_text_field_with_nil_name
def test_text_field_doesnt_change_param_values
object_name = 'post[]'
expected = '<input id="post_123_title" name="post[123][title]" type="text" value="Hello World" />'
assert_equal expected, text_field(object_name, "title")
assert_equal object_name, "post[]"
assert_dom_equal expected, text_field(object_name, "title")
end
def test_file_field_has_no_size
......@@ -3196,7 +3195,7 @@ def test_form_for_with_html_options_adds_options_to_form_tag
def test_form_for_with_string_url_option
form_for(@post, url: 'http://www.otherdomain.com') do |f| end
assert_equal whole_form("http://www.otherdomain.com", "edit_post_123", "edit_post", method: "patch"), output_buffer
assert_dom_equal whole_form("http://www.otherdomain.com", "edit_post_123", "edit_post", method: "patch"), output_buffer
end
def test_form_for_with_hash_url_option
......@@ -3210,14 +3209,14 @@ def test_form_for_with_record_url_option
form_for(@post, url: @post) do |f| end
expected = whole_form("/posts/123", "edit_post_123", "edit_post", method: "patch")
assert_equal expected, output_buffer
assert_dom_equal expected, output_buffer
end
def test_form_for_with_existing_object
form_for(@post) do |f| end
expected = whole_form("/posts/123", "edit_post_123", "edit_post", method: "patch")
assert_equal expected, output_buffer
assert_dom_equal expected, output_buffer
end
def test_form_for_with_new_object
......@@ -3228,7 +3227,7 @@ def post.to_key; nil; end
form_for(post) do |f| end
expected = whole_form("/posts", "new_post", "new_post")
assert_equal expected, output_buffer
assert_dom_equal expected, output_buffer
end
def test_form_for_with_existing_object_in_list
......@@ -3265,7 +3264,7 @@ def test_form_for_with_existing_object_and_custom_url
form_for(@post, url: "/super_posts") do |f| end
expected = whole_form("/super_posts", "edit_post_123", "edit_post", method: "patch")
assert_equal expected, output_buffer
assert_dom_equal expected, output_buffer
end
def test_form_for_with_default_method_as_patch
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册