forked from friendica/friendica-addons
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);
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|