public function ParserTest::testBlockLiteralWithLeadingNewlines in Service Container 7
Same name and namespace in other branches
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/Yaml/Tests/ParserTest.php \Symfony\Component\Yaml\Tests\ParserTest::testBlockLiteralWithLeadingNewlines()
Regression test for issue #7989.
See also
https://github.com/symfony/symfony/issues/7989
File
- modules/
providers/ service_container_symfony/ lib/ 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));
}