You are here

public function InlineTest::testBooleanMappingKeysAreConvertedToStrings in Loft Data Grids 7.2

File

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

Class

InlineTest

Namespace

Symfony\Component\Yaml\Tests

Code

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