public function ParserTest::testCanParseContentWithTrailingSpaces in Lockr 7.3
File
- vendor/
symfony/ yaml/ Tests/ ParserTest.php, line 620
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testCanParseContentWithTrailingSpaces() {
$yaml = "items: \n foo: bar";
$expected = [
'items' => [
'foo' => 'bar',
],
];
$this
->assertSame($expected, $this->parser
->parse($yaml));
}