You are here

public function InlineTest::testParseReferences in Lockr 7.3

@dataProvider getDataForParseReferences

File

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

Class

InlineTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testParseReferences($yaml, $expected) {
  $this
    ->assertSame($expected, Inline::parse($yaml, 0, [
    'var' => 'var-value',
  ]));
}