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