This commit is contained in:
Norbert Szulc 2021-06-09 01:17:46 +02:00 committed by Thomas Citharel
parent de102755f8
commit f8f53edb76
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 12 additions and 0 deletions

View File

@ -48,6 +48,18 @@ defmodule Mobilizon.Service.ICalendarTest do
refute ics =~ event2.title
assert ics =~ event3.title
end
test "with 50 events" do
Enum.each(0..50, fn i ->
%Event{} = insert(:event, title: "Event #{i}")
end)
{:commit, ics} = ICalendarService.create_cache("instance")
Enum.each(0..50, fn i ->
assert ics =~ "Event #{i}"
end)
end
end
describe "export an actor's events from a token" do