Mercurial > hg > rc1
view vendor/sabre/vobject/tests/VObject/VCard21Test.php @ 41:d2414df68d78
Updated by Alex S Grebenschikov (www.poralix.com)
to make it compatible with RoundCube 1.3.0
author | Charlie Root |
---|---|
date | Fri, 24 Jan 2025 14:20:15 -0500 |
parents | 430dbd5346f7 |
children |
line wrap: on
line source
<?php namespace Sabre\VObject; /** * Assorted vcard 2.1 tests. */ class VCard21Test extends \PHPUnit_Framework_TestCase { function testPropertyWithNoName() { $input = <<<VCF BEGIN:VCARD\r VERSION:2.1\r EMAIL;HOME;WORK:evert@fruux.com\r END:VCARD\r VCF; $vobj = Reader::read($input); $output = $vobj->serialize($input); $this->assertEquals($input, $output); } function testPropertyPadValueCount() { $input = <<<VCF BEGIN:VCARD VERSION:2.1 N:Foo END:VCARD VCF; $vobj = Reader::read($input); $output = $vobj->serialize($input); $expected = <<<VCF BEGIN:VCARD\r VERSION:2.1\r N:Foo;;;;\r END:VCARD\r VCF; $this->assertEquals($expected, $output); } }