You are here

public function ParserTest::testEmptyValue in Lockr 7.3

File

vendor/symfony/yaml/Tests/ParserTest.php, line 1018

Class

ParserTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testEmptyValue() {
  $input = <<<'EOF'
hash:
EOF;
  $this
    ->assertEquals([
    'hash' => null,
  ], Yaml::parse($input));
}