|
|
|
|
@ -62,9 +62,10 @@ class CalDAVSettingsTest extends TestCase {
|
|
|
|
|
['dav', 'sendInvitations', 'yes'],
|
|
|
|
|
['dav', 'generateBirthdayCalendar', 'yes'],
|
|
|
|
|
['dav', 'sendEventReminders', 'yes'],
|
|
|
|
|
['dav', 'sendEventRemindersToSharedGroupMembers', 'yes'],
|
|
|
|
|
['dav', 'sendEventRemindersPush', 'no'],
|
|
|
|
|
)
|
|
|
|
|
->will($this->onConsecutiveCalls('yes', 'no', 'yes', 'yes'));
|
|
|
|
|
->will($this->onConsecutiveCalls('yes', 'no', 'yes', 'yes', 'yes'));
|
|
|
|
|
$this->urlGenerator
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('linkToDocs')
|
|
|
|
|
@ -76,6 +77,7 @@ class CalDAVSettingsTest extends TestCase {
|
|
|
|
|
['sendInvitations', true],
|
|
|
|
|
['generateBirthdayCalendar', false],
|
|
|
|
|
['sendEventReminders', true],
|
|
|
|
|
['sendEventRemindersToSharedGroupMembers', true],
|
|
|
|
|
['sendEventRemindersPush', true],
|
|
|
|
|
);
|
|
|
|
|
$result = $this->settings->getForm();
|
|
|
|
|
|