public function ParserTest::testParseMultiLineUnquotedString in Database Sanitize 7
File
- vendor/
symfony/ yaml/ Tests/ ParserTest.php, line 1678
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testParseMultiLineUnquotedString() {
$yaml = <<<EOT
foo: bar
baz
foobar
foo
bar: baz
EOT;
$this
->assertSame(array(
'foo' => 'bar baz foobar foo',
'bar' => 'baz',
), $this->parser
->parse($yaml));
}