public function ParserTest::testBlankLinesInQuotedMultiLineString in Lockr 7.3
File
- vendor/
symfony/ yaml/ Tests/ ParserTest.php, line 1664
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testBlankLinesInQuotedMultiLineString() {
$yaml = <<<YAML
foobar: 'foo
bar'
YAML;
$expected = [
'foobar' => "foo\nbar",
];
$this
->assertSame($expected, $this->parser
->parse($yaml));
}