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.
|
require 'rails_helper'
|
|
|
|
describe Settings::Exports::BlockedAccountsController do
|
|
render_views
|
|
|
|
describe 'GET #index' do
|
|
it 'returns a csv of the blocking accounts' do
|
|
user = Fabricate(:user)
|
|
user.account.block!(Fabricate(:account, username: 'username', domain: 'domain'))
|
|
|
|
sign_in user, scope: :user
|
|
get :index, format: :csv
|
|
|
|
expect(response.body).to eq "username@domain\n"
|
|
end
|
|
end
|
|
end
|