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.

14 lines
332 B

  1. require 'rails_helper'
  2. describe FollowingAccountsController do
  3. render_views
  4. let(:alice) { Fabricate(:account, username: 'alice') }
  5. describe 'GET #index' do
  6. it 'returns http success' do
  7. get :index, params: { account_username: alice.username }
  8. expect(response).to have_http_status(:success)
  9. end
  10. end
  11. end