You are here

public function InlineTest::testParseScalarWithIncorrectlyQuotedStringShouldThrowException in Lockr 7.3

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

File

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

Class

InlineTest

Namespace

Symfony\Component\Yaml\Tests

Code

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