You are here

public function ParserTest::testSequenceInMappingStartedBySingleDashLine in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/symfony/yaml/Symfony/Component/Yaml/Tests/ParserTest.php \Symfony\Component\Yaml\Tests\ParserTest::testSequenceInMappingStartedBySingleDashLine()

File

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

Class

ParserTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testSequenceInMappingStartedBySingleDashLine() {
  $yaml = <<<'EOT'
a:
-
  b:
  -
    bar: baz
- foo
d: e
EOT;
  $expected = array(
    'a' => array(
      array(
        'b' => array(
          array(
            'bar' => 'baz',
          ),
        ),
      ),
      'foo',
    ),
    'd' => 'e',
  );
  $this
    ->assertSame($expected, $this->parser
    ->parse($yaml));
}