application: "Application"
permissions: "Permissions"
no_applications_html: "You have not yet authorized any %{oauth2} applications."
+ oauth_2: "OAuth 2"
application:
revoke: "Revoke Access"
confirm_revoke: "Revoke access for this application?"
--- /dev/null
+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