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

describe Export do
  describe 'to_csv' do
    it 'returns a csv of the accounts' do
      one = Account.new(username: 'one', domain: 'local.host')
      two = Account.new(username: 'two', domain: 'local.host')
      accounts = [one, two]

      export = Export.new(accounts).to_csv
      results = export.strip.split

      expect(results.size).to eq 2
      expect(results.first).to eq 'one@local.host'
    end
  end
end