mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-02 06:09:57 +00:00
14 lines
277 B
PHP
14 lines
277 B
PHP
<?php
|
|
|
|
namespace Sabre\VObject;
|
|
|
|
class Issue153Test extends \PHPUnit_Framework_TestCase {
|
|
|
|
function testRead() {
|
|
|
|
$obj = Reader::read(file_get_contents(dirname(__FILE__) . '/issue153.vcf'));
|
|
$this->assertEquals('Test Benutzer', (string)$obj->fn);
|
|
|
|
}
|
|
|
|
}
|