From: Hannes Magnusson Date: Fri, 28 Jul 2006 16:32:54 +0000 (+0000) Subject: MFB: Update test X-Git-Tag: RELEASE_1_0_0RC1~2182 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e78e8ab2ec27231f4b1e9bb8281792e6f58f1dde;p=php MFB: Update test --- diff --git a/ext/date/tests/date_constants.phpt b/ext/date/tests/date_constants.phpt index 466bec1098..64808f4d4f 100644 --- a/ext/date/tests/date_constants.phpt +++ b/ext/date/tests/date_constants.phpt @@ -12,6 +12,7 @@ Date constants DATE_RFC1036, DATE_RFC1123, DATE_RFC2822, + DATE_RFC3339, DATE_RSS, DATE_W3C ); @@ -20,6 +21,22 @@ Date constants var_dump(date($const, strtotime("1 Jul 06 14:27:30 +0200"))); var_dump(date($const, strtotime("2006-05-30T14:32:13+02:00"))); } + + print "\n"; + + var_dump( + DATE_ATOM == DateTime::ATOM, + DATE_COOKIE == DateTime::COOKIE, + DATE_ISO8601 == DateTime::ISO8601, + DATE_RFC822 == DateTime::RFC822, + DATE_RFC850 == DateTime::RFC850, + DATE_RFC1036 == DateTime::RFC1036, + DATE_RFC1123 == DateTime::RFC1123, + DATE_RFC2822 == DateTime::RFC2822, + DATE_RFC3339 == DateTime::RFC3339, + DATE_RSS == DateTime::RSS, + DATE_W3C == DateTime::W3C + ); ?> --EXPECT-- string(25) "2006-07-01T14:27:30+02:00" @@ -38,10 +55,24 @@ string(31) "Sat, 01 Jul 2006 14:27:30 +0200" string(31) "Tue, 30 May 2006 14:32:13 +0200" string(31) "Sat, 01 Jul 2006 14:27:30 +0200" string(31) "Tue, 30 May 2006 14:32:13 +0200" +string(25) "2006-07-01T14:27:30+02:00" +string(25) "2006-05-30T14:32:13+02:00" string(31) "Sat, 01 Jul 2006 14:27:30 +0200" string(31) "Tue, 30 May 2006 14:32:13 +0200" string(25) "2006-07-01T14:27:30+02:00" string(25) "2006-05-30T14:32:13+02:00" + +bool(true) +bool(true) +bool(true) +bool(true) +bool(true) +bool(true) +bool(true) +bool(true) +bool(true) +bool(true) +bool(true) --UEXPECT-- unicode(25) "2006-07-01T14:27:30+02:00" unicode(25) "2006-05-30T14:32:13+02:00"