public function InlineTest::testBooleanMappingKeysAreConvertedToStrings in Loft Data Grids 7.2
File
- vendor/
symfony/ yaml/ Tests/ InlineTest.php, line 487
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testBooleanMappingKeysAreConvertedToStrings() {
$this
->assertSame(array(
'false' => 'foo',
), Inline::parse('{false: foo}'));
$this
->assertSame(array(
'true' => 'foo',
), Inline::parse('{true: foo}'));
}