public function ParserTest::testEndOfTheDocumentMarker

File

drupal/core/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/ParserTest.php, line 98

Class

ParserTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testEndOfTheDocumentMarker() {
  $yaml = <<<EOF
--- %YAML:1.0
foo
...
EOF;
  $this
    ->assertEquals('foo', $this->parser
    ->parse($yaml));
}