You are here

public function ParserTest::testMappingInASequence in Translation template extractor 7.3

Same name and namespace in other branches
  1. 6.3 vendor/Symfony/Component/Yaml/Tests/ParserTest.php \Symfony\Component\Yaml\Tests\ParserTest::testMappingInASequence()
  2. 7.2 vendor/Symfony/Component/Yaml/Tests/ParserTest.php \Symfony\Component\Yaml\Tests\ParserTest::testMappingInASequence()

@expectedException \Symfony\Component\Yaml\Exception\ParseException

File

vendor/Symfony/Component/Yaml/Tests/ParserTest.php, line 507

Class

ParserTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testMappingInASequence() {
  Yaml::parse(<<<EOF
yaml:
  - array stuff
  hash: me
EOF
);
}