about summary refs log tree commit diff
path: root/spec/controllers/settings/exports/blocked_accounts_controller_spec.rb
blob: 574d4d875861d4ca19e1e815a2dacadb934e529f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'rails_helper'

describe Settings::Exports::BlockedAccountsController do
  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="blocking.csv"'
    end
  end
end