You are here

public function ParserTest::testMultiLineQuotedStringWithTrailingBackslash in Lockr 7.3

File

vendor/symfony/yaml/Tests/ParserTest.php, line 1635

Class

ParserTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testMultiLineQuotedStringWithTrailingBackslash() {
  $yaml = <<<YAML
foobar:
    "foo\\
    bar"
YAML;
  $this
    ->assertSame([
    'foobar' => 'foobar',
  ], $this->parser
    ->parse($yaml));
}