You are here

public function InlineTest::testTheEmptyStringIsAValidMappingKey in Loft Data Grids 7.2

File

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

Class

InlineTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testTheEmptyStringIsAValidMappingKey() {
  $this
    ->assertSame(array(
    '' => 'foo',
  ), Inline::parse('{ "": foo }'));
}