about summary refs log tree commit diff
path: root/spec/controllers/settings/exports/lists_controller_spec.rb
blob: 29623ba49916722d63742802e769cacf1c6e5b98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require 'rails_helper'

describe Settings::Exports::ListsController do
  render_views

  describe 'GET #index' do
    it 'returns a csv of the domains' do
      account = Fabricate(:account)
      user = Fabricate(:user, account: account)
      list = Fabricate(:list, account: account, title: 'The List')
      Fabricate(:list_account, list: list, account: account)

      sign_in user, scope: :user
      get :index, format: :csv

      expect(response.body).to match 'The List'
    end
  end
end