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