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