public function ParserTest::testEndOfTheDocumentMarker in Plug 7
File
- lib/
Symfony/ yaml/ Symfony/ Component/ Yaml/ Tests/ ParserTest.php, line 91
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testEndOfTheDocumentMarker() {
$yaml = <<<EOF
--- %YAML:1.0
foo
...
EOF;
$this
->assertEquals('foo', $this->parser
->parse($yaml));
}