You are here

public function InlineTest::testParseScalarWithCorrectlyQuotedStringShouldReturnString in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/symfony/yaml/Symfony/Component/Yaml/Tests/InlineTest.php \Symfony\Component\Yaml\Tests\InlineTest::testParseScalarWithCorrectlyQuotedStringShouldReturnString()

File

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

Class

InlineTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testParseScalarWithCorrectlyQuotedStringShouldReturnString() {
  $value = "'don''t do somthin'' like that'";
  $expect = "don't do somthin' like that";
  $this
    ->assertSame($expect, Inline::parseScalar($value));
}