public function ParserTest::testEvalRefException in Lockr 7.3
@expectedException \Symfony\Component\Yaml\Exception\ParseException @expectedExceptionMessage Reference "foo" does not exist
File
- vendor/
symfony/ yaml/ Tests/ ParserTest.php, line 2172
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testEvalRefException() {
$yaml = <<<EOE
foo: { &foo { a: Steve, <<: *foo} }
EOE;
$this->parser
->parse($yaml);
}