You are here

public function InlineTest::testParseWithMapObjects in Plug 7

@dataProvider getTestsForParseWithMapObjects

File

lib/Symfony/yaml/Symfony/Component/Yaml/Tests/InlineTest.php, line 29

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));
}