public function InlineTest::testParseScalarWithCorrectlyQuotedStringShouldReturnString in Plug 7
File
- lib/
Symfony/ yaml/ Symfony/ Component/ Yaml/ Tests/ InlineTest.php, line 114
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testParseScalarWithCorrectlyQuotedStringShouldReturnString() {
$value = "'don''t do somthin'' like that'";
$expect = "don't do somthin' like that";
$this
->assertSame($expect, Inline::parseScalar($value));
}