public function ParserTest::testBlockLiteralWithLeadingNewlines in Plug 7
Regression test for issue #7989.
See also
https://github.com/symfony/symfony/issues/7989
File
- lib/
Symfony/ yaml/ Symfony/ Component/ Yaml/ Tests/ ParserTest.php, line 406
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testBlockLiteralWithLeadingNewlines() {
$yaml = <<<'EOF'
foo: |-
bar
EOF;
$expected = array(
'foo' => "\n\nbar",
);
$this
->assertSame($expected, $this->parser
->parse($yaml));
}