Fix tests to reflect changes to signup form.

This commit is contained in:
Tom Hughes 2009-10-21 23:35:59 +00:00
parent fc4e72dc35
commit d4b8020757
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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