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.
20 lines
499 B
20 lines
499 B
require 'rails_helper'
|
|
|
|
describe Settings::Exports::BlockedAccountsController do
|
|
render_views
|
|
|
|
before do
|
|
sign_in Fabricate(:user), scope: :user
|
|
end
|
|
|
|
describe 'GET #index' do
|
|
it 'returns a csv of the blocking accounts' do
|
|
get :index, format: :csv
|
|
|
|
expect(response).to have_http_status(:success)
|
|
expect(response.content_type).to eq 'text/csv'
|
|
expect(response.headers['Content-Disposition']).to eq 'attachment; filename="blocked_accounts.csv"'
|
|
end
|
|
end
|
|
end
|