]> granicus.if.org Git - php/commitdiff
MFB: Update test
authorHannes Magnusson <bjori@php.net>
Fri, 28 Jul 2006 16:32:54 +0000 (16:32 +0000)
committerHannes Magnusson <bjori@php.net>
Fri, 28 Jul 2006 16:32:54 +0000 (16:32 +0000)
ext/date/tests/date_constants.phpt

index 466bec10986c57da6fde03776870f96a0cc2f9a4..64808f4d4fe809b166f1f980994383409b549156 100644 (file)
@@ -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"