You are here

public function InlineTest::testParseWithMapObjectsPassingTrue in Lockr 7.3

@group legacy @dataProvider getTestsForParseWithMapObjects

File

vendor/symfony/yaml/Tests/InlineTest.php, line 108

Class

InlineTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testParseWithMapObjectsPassingTrue($yaml, $value) {
  $actual = Inline::parse($yaml, false, false, true);
  $this
    ->assertSame(serialize($value), serialize($actual));
}