* 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
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			504 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			504 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
require 'rails_helper'
 | 
						|
 | 
						|
describe Settings::Exports::FollowingAccountsController do
 | 
						|
  render_views
 | 
						|
 | 
						|
  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'
 | 
						|
      expect(response.headers['Content-Disposition']).to eq 'attachment; filename="following_accounts.csv"'
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |