You are here

public function InlineTest::testParseWithMapObjects in Loft Data Grids 7.2

@dataProvider getTestsForParseWithMapObjects

File

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

Class

InlineTest

Namespace

Symfony\Component\Yaml\Tests

Code

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