Mercurial > hg > rc1
view vendor/sabre/vobject/tests/VObject/Recur/EventIterator/NoInstancesTest.php @ 38:ac106d4c8961 default tip
flip /etc/roundcube to point here
author | Charlie Root |
---|---|
date | Sat, 29 Dec 2018 05:39:53 -0500 |
parents | 430dbd5346f7 |
children |
line wrap: on
line source
<?php namespace Sabre\VObject\Recur; use Sabre\VObject\Reader; class IssueEXDATETest extends \PHPUnit_Framework_TestCase { /** * @expectedException \Sabre\VObject\Recur\NoInstancesException */ function testRecurrence() { $input = <<<ICS BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 BEGIN:VEVENT DTSTART;TZID=Europe/Berlin:20130329T140000 DTEND;TZID=Europe/Berlin:20130329T153000 RRULE:FREQ=WEEKLY;BYDAY=FR;UNTIL=20130412T115959Z EXDATE;TZID=Europe/Berlin:20130405T140000 EXDATE;TZID=Europe/Berlin:20130329T140000 DTSTAMP:20140916T201215Z UID:foo SEQUENCE:1 SUMMARY:foo END:VEVENT END:VCALENDAR ICS; $vcal = Reader::read($input); $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal); $it = new EventIterator($vcal, 'foo'); } }