aboutsummaryrefslogblamecommitdiffstats
path: root/vendor/sabre/vobject/tests/Sabre/VObject/SlashRTest.php
blob: ebbfb04a7da330a9945428e7e949fcde58f9f105 (plain) (tree)


















                                                                            
<?php

namespace Sabre\VObject;

/**
 * This issue was pointed out in Issue 55. \r should be stripped completely 
 * when encoding property values.
 */
class SlashRTest extends \PHPUnit_Framework_TestCase {

    function testEncode() {

        $prop = new \Sabre\VObject\Property('test', "abc\r\ndef");
        $this->assertEquals("TEST:abc\\ndef\r\n", $prop->serialize());

    }


}