forked from potsda.mn/mobilizon
c987d7b2e7
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
24 lines
755 B
Elixir
24 lines
755 B
Elixir
defmodule Mobilizon.Service.Export.Participants.CSVTest do
|
|
use Mobilizon.DataCase
|
|
|
|
import Mobilizon.Factory
|
|
|
|
alias Mobilizon.Events.Event
|
|
alias Mobilizon.Service.Export.Participants.CSV
|
|
|
|
describe "export event participants to csv" do
|
|
@tag @skip
|
|
test "export basic infos" do
|
|
%Event{} = event = insert(:event)
|
|
insert(:participant, event: event, role: :creator)
|
|
insert(:participant, event: event, role: :participant)
|
|
insert(:participant, event: event, role: :not_approved)
|
|
|
|
assert CSV.ready?()
|
|
assert {:ok, path} = CSV.export(event)
|
|
assert content = File.read!("test/uploads/exports/csv/" <> path)
|
|
assert content =~ "Participant name,Participant status,Participant message"
|
|
end
|
|
end
|
|
end
|