public function ParserTest::testMappingInASequence in Translation template extractor 6.3
Same name and namespace in other branches
- 7.3 vendor/Symfony/Component/Yaml/Tests/ParserTest.php \Symfony\Component\Yaml\Tests\ParserTest::testMappingInASequence()
- 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
Namespace
Symfony\Component\Yaml\TestsCode
public function testMappingInASequence() {
Yaml::parse(<<<EOF
yaml:
- array stuff
hash: me
EOF
);
}