mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-06 03:06:51 +00:00
13 lines
278 B
PHP
13 lines
278 B
PHP
|
<?php
|
||
|
|
||
|
class Sabre_VObject_Issue153Test extends PHPUnit_Framework_TestCase {
|
||
|
|
||
|
function testRead() {
|
||
|
|
||
|
$obj = Sabre_VObject_Reader::read(file_get_contents(dirname(__FILE__) . '/issue153.vcf'));
|
||
|
$this->assertEquals('Test Benutzer', (string)$obj->fn);
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|