about summary refs log tree commit diff
path: root/spec/controllers/oauth/authorized_applications_controller_spec.rb
blob: f5d64bd90ba839bbd5a996b1c8329744cf5eb258 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require 'rails_helper'

describe Oauth::AuthorizedApplicationsController do
  render_views

  before do
    sign_in Fabricate(:user), scope: :user
  end

  describe 'GET #index' do
    before do
      get :index
    end

    it 'returns http success' do
      expect(response).to have_http_status(:success)
    end
  end
end