public function ParserTest::testYamlDirective in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/symfony/yaml/Symfony/Component/Yaml/Tests/ParserTest.php \Symfony\Component\Yaml\Tests\ParserTest::testYamlDirective()
File
- vendor/
symfony/ yaml/ Tests/ ParserTest.php, line 916
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testYamlDirective() {
$yaml = <<<'EOF'
%YAML 1.2
---
foo: 1
bar: 2
EOF;
$this
->assertEquals(array(
'foo' => 1,
'bar' => 2,
), $this->parser
->parse($yaml));
}