You are here

public function ParserTest::testYamlDirective in Lockr 7.3

File

vendor/symfony/yaml/Tests/ParserTest.php, line 1168

Class

ParserTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testYamlDirective() {
  $yaml = <<<'EOF'
%YAML 1.2
---
foo: 1
bar: 2
EOF;
  $this
    ->assertEquals([
    'foo' => 1,
    'bar' => 2,
  ], $this->parser
    ->parse($yaml));
}