mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
9566893cc9
* Add render_views in more places * Delegate methods from account to user with allow nil true, so that admin accounts show view renders when missing a user * Use actual account instances in authorize follow controller spec
16 lines
332 B
Ruby
16 lines
332 B
Ruby
require 'rails_helper'
|
|
|
|
describe FollowerAccountsController do
|
|
render_views
|
|
|
|
let(:alice) { Fabricate(:account, username: 'alice') }
|
|
|
|
describe 'GET #index' do
|
|
it 'returns http success' do
|
|
get :index, params: { account_username: alice.username }
|
|
|
|
expect(response).to have_http_status(:success)
|
|
end
|
|
end
|
|
end
|