summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2014-12-20 14:41:04 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2014-12-20 14:41:04 +0000
commit744ceaf61f5b3fc2065df0d7f0c42390236dc5b9 (patch)
tree3ca82f6928a474c79afaccdfcc4ca05fae1d2449
parentb1d2312dbf45fb2c73bdf4668b0f2a0fb6b89296 (diff)
downloadredmine-744ceaf61f5b3fc2065df0d7f0c42390236dc5b9.tar.gz
redmine-744ceaf61f5b3fc2065df0d7f0c42390236dc5b9.zip
Use DOM assertions as attributes order changes from a Rails version to another.
git-svn-id: http://svn.redmine.org/redmine/trunk@13778 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--test/unit/helpers/custom_fields_helper_test.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/unit/helpers/custom_fields_helper_test.rb b/test/unit/helpers/custom_fields_helper_test.rb
index 0ca409364..725d780a0 100644
--- a/test/unit/helpers/custom_fields_helper_test.rb
+++ b/test/unit/helpers/custom_fields_helper_test.rb
@@ -46,15 +46,15 @@ class CustomFieldsHelperTest < ActionView::TestCase
value = CustomValue.new(:value => 'bar', :custom_field => field)
field.id = 52
- assert_equal '<input class="foo_cf" id="object_custom_field_values_52" name="object[custom_field_values][52]" type="text" value="bar" />',
- custom_field_tag('object', value)
+ assert_select_in custom_field_tag('object', value),
+ 'input[type=text][value=bar][name=?]', 'object[custom_field_values][52]'
end
def test_unknow_field_format_should_be_bulk_edited_as_string
field = CustomField.new(:field_format => 'foo')
field.id = 52
- assert_include '<input class="foo_cf" id="object_custom_field_values_52" name="object[custom_field_values][52]" type="text" value="" />',
- custom_field_tag_for_bulk_edit('object', field)
+ assert_select_in custom_field_tag_for_bulk_edit('object', field),
+ 'input[type=text][value=""][name=?]', 'object[custom_field_values][52]'
end
end