You are here

public function InlineTest::testParseScalarWithCorrectlyQuotedStringShouldReturnString in Translation template extractor 6.3

Same name and namespace in other branches
  1. 7.3 vendor/Symfony/Component/Yaml/Tests/InlineTest.php \Symfony\Component\Yaml\Tests\InlineTest::testParseScalarWithCorrectlyQuotedStringShouldReturnString()
  2. 7.2 vendor/Symfony/Component/Yaml/Tests/InlineTest.php \Symfony\Component\Yaml\Tests\InlineTest::testParseScalarWithCorrectlyQuotedStringShouldReturnString()

File

vendor/Symfony/Component/Yaml/Tests/InlineTest.php, line 111

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));
}