public function ParserTest::testScalarInSequence in Lockr 7.3
@expectedException \Symfony\Component\Yaml\Exception\ParseException @expectedExceptionMessage missing colon
File
- vendor/
symfony/ yaml/ Tests/ ParserTest.php, line 893
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testScalarInSequence() {
Yaml::parse(<<<'EOF'
foo:
- bar
"missing colon"
foo: bar
EOF
);
}