Quote values in DOM selectors for Nokogiri compatibility.

git-svn-id: http://svn.redmine.org/redmine/trunk@13619 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2014-11-20 19:38:40 +00:00
parent a7559e669f
commit 2a43f1adbc
23 changed files with 128 additions and 128 deletions

View File

@@ -64,7 +64,7 @@ class UsersControllerTest < ActionController::TestCase
assert users.any?
assert_equal([], (users - Group.find(10).users))
assert_select 'select[name=group_id]' do
assert_select 'option[value=10][selected=selected]'
assert_select 'option[value="10"][selected=selected]'
end
end
@@ -263,7 +263,7 @@ class UsersControllerTest < ActionController::TestCase
assert_template 'new'
assert_select 'select#pref_time_zone option[selected=selected]', :text => /Paris/
assert_select 'input#pref_no_self_notified[value=1][checked=checked]'
assert_select 'input#pref_no_self_notified[value="1"][checked=checked]'
end
def test_edit