public function InlineTest::testParseScalarWithIncorrectlyDoubleQuotedStringShouldThrowException

@expectedException \Symfony\Component\Yaml\Exception\ParseException

File

drupal/core/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/InlineTest.php, line 80

Class

InlineTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testParseScalarWithIncorrectlyDoubleQuotedStringShouldThrowException() {
  $value = '"don"t do somthin" like that"';
  Inline::parse($value);
}