[Yaml] Add test showing that dates before 01 Jan 1970 are correctly parsed

This commit is contained in:
Alexander 2012-12-12 11:51:43 +01:00
parent e5ba394506
commit 2f07966677

View File

@ -127,6 +127,8 @@ class InlineTest extends \PHPUnit_Framework_TestCase
'2007-10-30' => mktime(0, 0, 0, 10, 30, 2007),
'2007-10-30T02:59:43Z' => gmmktime(2, 59, 43, 10, 30, 2007),
'2007-10-30 02:59:43 Z' => gmmktime(2, 59, 43, 10, 30, 2007),
'1960-10-30 02:59:43 Z' => gmmktime(2, 59, 43, 10, 30, 1960),
'1730-10-30T02:59:43Z' => gmmktime(2, 59, 43, 10, 30, 1730),
'"a \\"string\\" with \'quoted strings inside\'"' => 'a "string" with \'quoted strings inside\'',
"'a \"string\" with ''quoted strings inside'''" => 'a "string" with \'quoted strings inside\'',