2017-04-12 06:00:43 +10:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe Settings::Exports::FollowingAccountsController do
|
2017-04-28 23:12:37 +10:00
|
|
|
render_views
|
|
|
|
|
2017-04-12 06:00:43 +10:00
|
|
|
before do
|
|
|
|
sign_in Fabricate(:user), scope: :user
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #index' do
|
|
|
|
it 'returns a csv of the following accounts' do
|
|
|
|
get :index, format: :csv
|
|
|
|
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
expect(response.content_type).to eq 'text/csv'
|
2017-04-13 02:20:44 +10:00
|
|
|
expect(response.headers['Content-Disposition']).to eq 'attachment; filename="following_accounts.csv"'
|
2017-04-12 06:00:43 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|