X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e1065adc610f3094a22d43dddad5ffa04338ec38..d74e7628fe26ad89907b97807155f753952ecfd3:/test/integration/client_applications_test.rb diff --git a/test/integration/client_applications_test.rb b/test/integration/client_applications_test.rb index 269d3633d..e7e5b7575 100644 --- a/test/integration/client_applications_test.rb +++ b/test/integration/client_applications_test.rb @@ -8,7 +8,6 @@ class ClientApplicationsTest < ActionDispatch::IntegrationTest user = create(:user) get "/login" - assert_response :redirect assert_redirected_to login_path(:cookie_test => "true") follow_redirect! assert_response :success @@ -17,9 +16,9 @@ class ClientApplicationsTest < ActionDispatch::IntegrationTest follow_redirect! assert_response :success assert_template "users/show" - get "/user/#{ERB::Util.u(user.display_name)}/account" + get "/account/edit" assert_response :success - assert_template "users/account" + assert_template "accounts/edit" # check that the form to allow new client application creations exists assert_in_heading do @@ -65,7 +64,7 @@ class ClientApplicationsTest < ActionDispatch::IntegrationTest get "/user/#{ERB::Util.u(user.display_name)}/oauth_clients" assert_response :success assert_template "oauth_clients/index" - assert_in_body { assert_select "div>a", "My New App" } + assert_in_body { assert_select "li>a", "My New App" } end ##