You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
312 B

  1. require 'rails_helper'
  2. RSpec.describe FollowRequestsController, type: :controller do
  3. render_views
  4. before do
  5. sign_in Fabricate(:user), scope: :user
  6. end
  7. describe 'GET #index' do
  8. it 'returns http success' do
  9. get :index
  10. expect(response).to have_http_status(:success)
  11. end
  12. end
  13. end