You are here

public function ParserTest::testParseMultiLineString in Lockr 7.3

File

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

Class

ParserTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testParseMultiLineString() {
  $this
    ->assertEquals("foo bar\nbaz", $this->parser
    ->parse("foo\nbar\n\nbaz"));
}