Mercurial > hg > rc1
annotate vendor/sabre/vobject/tests/VObject/Issue64Test.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 |
rev | line source |
---|---|
7 | 1 <?php |
2 | |
3 namespace Sabre\VObject; | |
4 | |
5 class Issue64Test extends \PHPUnit_Framework_TestCase { | |
6 | |
7 function testRead() { | |
8 | |
9 $vcard = Reader::read(file_get_contents(dirname(__FILE__) . '/issue64.vcf')); | |
10 $vcard = $vcard->convert(\Sabre\VObject\Document::VCARD30); | |
11 $vcard = $vcard->serialize(); | |
12 | |
13 $converted = Reader::read($vcard); | |
14 | |
15 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCard', $converted); | |
16 | |
17 } | |
18 | |
19 } |