From: Tom Hughes Date: Fri, 30 Aug 2024 16:46:00 +0000 (+0100) Subject: Merge remote-tracking branch 'upstream/pull/5133' X-Git-Tag: live~271 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/2666294abbbf860a7942389d02b8879b67ca5c63?hp=cee9818dfc9ac3f6eae01cdb51df9093ae5d1322 Merge remote-tracking branch 'upstream/pull/5133' --- diff --git a/test/controllers/oauth2_applications_controller_test.rb b/test/controllers/oauth2_applications_controller_test.rb index a5c37d808..1333fa000 100644 --- a/test/controllers/oauth2_applications_controller_test.rb +++ b/test/controllers/oauth2_applications_controller_test.rb @@ -53,6 +53,16 @@ class Oauth2ApplicationsControllerTest < ActionDispatch::IntegrationTest assert_select "tbody tr", 2 end + def test_index_with_moderator_app + user = create(:user) + create(:oauth_application, :owner => user, :scopes => "write_redactions") + + session_for(user) + + get oauth_applications_path + assert_response :success + end + def test_new user = create(:user)