mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-06 00:02:55 +00:00
12 lines
278 B
PHP
12 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);
|
|
|
|
}
|
|
|
|
}
|