Mercurial > hg > rc1
view vendor/sabre/vobject/tests/VObject/Recur/EventIterator/MissingOverriddenTest.php @ 43:771f6803cc4b default tip
somehow lost the correctly updated metadata so e.g. 'mail' package wasn't being imported
author | Charlie Root |
---|---|
date | Sun, 26 Jan 2025 13:13:49 -0500 |
parents | 430dbd5346f7 |
children |
line wrap: on
line source
<?php namespace Sabre\VObject; use DateTime, DateTimeZone; class RecurrenceIteratorMissingOverriddenTest extends \PHPUnit_Framework_TestCase { function testExpand() { $input = <<<ICS BEGIN:VCALENDAR VERSION:2.0 BEGIN:VEVENT UID:foo DTSTART:20130727T120000Z DURATION:PT1H RRULE:FREQ=DAILY;COUNT=2 SUMMARY:A END:VEVENT BEGIN:VEVENT RECURRENCE-ID:20130728T120000Z UID:foo DTSTART:20140101T120000Z DURATION:PT1H SUMMARY:B END:VEVENT END:VCALENDAR ICS; $vcal = Reader::read($input); $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal); $vcal->expand(new DateTime('2011-01-01'), new DateTime('2015-01-01')); $result = $vcal->serialize(); $output = <<<ICS BEGIN:VCALENDAR VERSION:2.0 BEGIN:VEVENT UID:foo DTSTART:20130727T120000Z DURATION:PT1H SUMMARY:A END:VEVENT BEGIN:VEVENT RECURRENCE-ID:20130728T120000Z UID:foo DTSTART:20140101T120000Z DURATION:PT1H SUMMARY:B END:VEVENT END:VCALENDAR ICS; $this->assertEquals($output, str_replace("\r","",$result)); } }