openstreetmap-website/test/system/oauth2_test.rb

10 lines
278 B
Ruby

require "application_system_test_case"
class Oauth2Test < ApplicationSystemTestCase
def test_authorized_applications
sign_in_as(create(:user))
visit oauth_authorized_applications_path
assert_text "You have not yet authorized any OAuth 2 applications."
end
end