public function ParserTest::testShortcutKeyUnindentedCollectionException in Plug 7
@expectedException \Symfony\Component\Yaml\Exception\ParseException
File
- lib/
Symfony/ yaml/ Symfony/ Component/ Yaml/ Tests/ ParserTest.php, line 494
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testShortcutKeyUnindentedCollectionException() {
$yaml = <<<EOF
collection:
- key: foo
foo: bar
EOF;
$this->parser
->parse($yaml);
}