public function ParserTest::testTabsInYaml in Lockr 7.3
File
- vendor/
symfony/ yaml/ Tests/ ParserTest.php, line 104
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testTabsInYaml() {
// test tabs in YAML
$yamls = [
"foo:\n\tbar",
"foo:\n \tbar",
"foo:\n\t bar",
"foo:\n \t bar",
];
foreach ($yamls as $yaml) {
try {
$content = $this->parser
->parse($yaml);
$this
->fail('YAML files must not contain tabs');
} catch (\Exception $e) {
$this
->assertInstanceOf('\\Exception', $e, 'YAML files must not contain tabs');
$this
->assertEquals('A YAML file cannot contain tabs as indentation at line 2 (near "' . strpbrk($yaml, "\t") . '").', $e
->getMessage(), 'YAML files must not contain tabs');
}
}
}