You are here

public function ParserTest::testBlockLiteralWithLeadingNewlines in Lockr 7.3

Regression test for issue #7989.

See also

https://github.com/symfony/symfony/issues/7989

File

vendor/symfony/yaml/Tests/ParserTest.php, line 457

Class

ParserTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testBlockLiteralWithLeadingNewlines() {
  $yaml = <<<'EOF'
foo: |-


    bar

EOF;
  $expected = [
    'foo' => "\n\nbar",
  ];
  $this
    ->assertSame($expected, $this->parser
    ->parse($yaml));
}