X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/849e874dce46f798b4df68579d5a892ce11d52e8..c5fc21e6a6615646b3fa443b6fd12a80b4fef331:/test/functional/user_controller_test.rb diff --git a/test/functional/user_controller_test.rb b/test/functional/user_controller_test.rb index 61286b284..20ea74696 100644 --- a/test/functional/user_controller_test.rb +++ b/test/functional/user_controller_test.rb @@ -199,7 +199,7 @@ class UserControllerTest < ActionController::TestCase assert_select "html", :count => 1 do assert_select "head", :count => 1 do - assert_select "title", :text => /Create account/, :count => 1 + assert_select "title", :text => /Sign Up/, :count => 1 end assert_select "body", :count => 1 do assert_select "div#content", :count => 1 do @@ -209,7 +209,7 @@ class UserControllerTest < ActionController::TestCase assert_select "input[id=user_display_name]", :count => 1 assert_select "input[id=user_pass_crypt][type=password]", :count => 1 assert_select "input[id=user_pass_crypt_confirmation][type=password]", :count => 1 - assert_select "input[type=submit][value=Continue]", :count => 1 + assert_select "input[type=submit][value=Sign Up]", :count => 1 end end end @@ -259,8 +259,7 @@ class UserControllerTest < ActionController::TestCase end assert_response :success assert_template 'new' - assert_select "div#errorExplanation" - assert_select "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_email" + assert_select "form > fieldset > div.form-row > div.field_with_errors > input#user_email" end def test_user_create_submit_duplicate_email_uppercase @@ -279,8 +278,7 @@ class UserControllerTest < ActionController::TestCase end assert_response :success assert_template 'new' - assert_select "div#errorExplanation" - assert_select "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_email" + assert_select "form > fieldset > div.form-row > div.field_with_errors > input#user_email" end def test_user_create_submit_duplicate_name @@ -299,8 +297,7 @@ class UserControllerTest < ActionController::TestCase end assert_response :success assert_template 'new' - assert_select "div#errorExplanation" - assert_select "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_display_name" + assert_select "form > fieldset > div.form-row > div.field_with_errors > input#user_display_name" end def test_user_create_submit_duplicate_name_uppercase @@ -319,8 +316,7 @@ class UserControllerTest < ActionController::TestCase end assert_response :success assert_template 'new' - assert_select "div#errorExplanation" - assert_select "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_display_name" + assert_select "form > fieldset > div.form-row > div.field_with_errors > input#user_display_name" end def test_user_terms_new_user