public function ParserTest::testCommentAtTheRootIndent 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::testCommentAtTheRootIndent()
File
- vendor/
symfony/ yaml/ Tests/ ParserTest.php, line 775
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testCommentAtTheRootIndent() {
$this
->assertEquals(array(
'services' => array(
'app.foo_service' => array(
'class' => 'Foo',
),
'app/bar_service' => array(
'class' => 'Bar',
),
),
), Yaml::parse(<<<'EOF'
# comment 1
services:
# comment 2
# comment 3
app.foo_service:
class: Foo
# comment 4
# comment 5
app/bar_service:
class: Bar
EOF
));
}