Mercurial > hg > rc1
annotate vendor/sabre/vobject/tests/VObject/Issue64Test.php @ 7:430dbd5346f7
vendor sabre as distributed
| author | Charlie Root |
|---|---|
| date | Sat, 13 Jan 2018 09:06:10 -0500 |
| parents | |
| 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 } |
