You are here

public function ParserTest::testBlockLiteralWithLeadingNewlines in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/symfony/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

vendor/symfony/yaml/Symfony/Component/Yaml/Tests/ParserTest.php, line 406

Class

ParserTest

Namespace

Symfony\Component\Yaml\Tests

Code

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


    bar

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