Fix tests to reflect changes to signup form.
This commit is contained in:
parent
fc4e72dc35
commit
d4b8020757
2 changed files with 3 additions and 3 deletions
|
@ -59,7 +59,7 @@ class UserControllerTest < ActionController::TestCase
|
|||
assert_response :success
|
||||
assert_template 'new'
|
||||
assert_select "div#errorExplanation"
|
||||
assert_select "table#loginForm > tr > td > div[class=fieldWithErrors] > input#user_email"
|
||||
assert_select "table#signupForm > tr > td > div[class=fieldWithErrors] > input#user_email"
|
||||
end
|
||||
|
||||
# Check that the user account page will display and contains some relevant
|
||||
|
|
|
@ -26,7 +26,7 @@ class UserCreationTest < ActionController::IntegrationTest
|
|||
assert_template 'user/new'
|
||||
assert_equal response.headers['Content-Language'][0..1], localer.to_s[0..1] unless localer == :root
|
||||
assert_select "div#errorExplanation"
|
||||
assert_select "table#loginForm > tr > td > div[class=fieldWithErrors] > input#user_email"
|
||||
assert_select "table#signupForm > tr > td > div[class=fieldWithErrors] > input#user_email"
|
||||
assert_no_missing_translations
|
||||
end
|
||||
end
|
||||
|
@ -45,7 +45,7 @@ class UserCreationTest < ActionController::IntegrationTest
|
|||
assert_response :success
|
||||
assert_template 'user/new'
|
||||
assert_select "div#errorExplanation"
|
||||
assert_select "table#loginForm > tr > td > div[class=fieldWithErrors] > input#user_display_name"
|
||||
assert_select "table#signupForm > tr > td > div[class=fieldWithErrors] > input#user_display_name"
|
||||
assert_no_missing_translations
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue