[Yaml] Fix the tests

This commit is contained in:
Guilhem Niot 2017-03-06 21:37:41 +01:00
parent fda2472b02
commit 5107b94baf
No known key found for this signature in database
GPG Key ID: 7A655BEB5BDC1CA6

View File

@ -210,23 +210,25 @@ EOF;
public function getEscapeSequences() public function getEscapeSequences()
{ {
return array( return array(
'null' => array("\t\\0", '"\t\\\\0"'), 'empty string' => array('', "''"),
'bell' => array("\t\\a", '"\t\\\\a"'), 'null' => array("\x0", '"\\0"'),
'backspace' => array("\t\\b", '"\t\\\\b"'), 'bell' => array("\x7", '"\\a"'),
'horizontal-tab' => array("\t\\t", '"\t\\\\t"'), 'backspace' => array("\x8", '"\\b"'),
'line-feed' => array("\t\\n", '"\t\\\\n"'), 'horizontal-tab' => array("\t", '"\\t"'),
'vertical-tab' => array("\t\\v", '"\t\\\\v"'), 'line-feed' => array("\n", '"\\n"'),
'form-feed' => array("\t\\f", '"\t\\\\f"'), 'vertical-tab' => array("\v", '"\\v"'),
'carriage-return' => array("\t\\r", '"\t\\\\r"'), 'form-feed' => array("\xC", '"\\f"'),
'escape' => array("\t\\e", '"\t\\\\e"'), 'carriage-return' => array("\r", '"\\r"'),
'space' => array("\t\\ ", '"\t\\\\ "'), 'escape' => array("\x1B", '"\\e"'),
'double-quote' => array("\t\\\"", '"\t\\\\\\""'), 'space' => array(' ', "' '"),
'slash' => array("\t\\/", '"\t\\\\/"'), 'double-quote' => array('"', "'\"'"),
'backslash' => array("\t\\\\", '"\t\\\\\\\\"'), 'slash' => array('/', '/'),
'next-line' => array("\t\\N", '"\t\\\\N"'), 'backslash' => array('\\', '\\'),
'non-breaking-space' => array("\t\\<EFBFBD>", '"\t\\\\<5C>"'), 'next-line' => array("\xC2\x85", '"\\N"'),
'line-separator' => array("\t\\L", '"\t\\\\L"'), 'non-breaking-space' => array("\xc2\xa0", '"\\_"'),
'paragraph-separator' => array("\t\\P", '"\t\\\\P"'), 'line-separator' => array("\xE2\x80\xA8", '"\\L"'),
'paragraph-separator' => array("\xE2\x80\xA9", '"\\P"'),
'colon' => array(':', "':'"),
); );
} }