summaryrefslogtreecommitdiff
path: root/ext/calendar/tests/cal_days_in_month.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/calendar/tests/cal_days_in_month.phpt')
-rw-r--r--ext/calendar/tests/cal_days_in_month.phpt23
1 files changed, 0 insertions, 23 deletions
diff --git a/ext/calendar/tests/cal_days_in_month.phpt b/ext/calendar/tests/cal_days_in_month.phpt
deleted file mode 100644
index 71fe98f0b7..0000000000
--- a/ext/calendar/tests/cal_days_in_month.phpt
+++ /dev/null
@@ -1,23 +0,0 @@
---TEST--
-cal_days_in_month()
---SKIPIF--
-<?php include 'skipif.inc'; ?>
---FILE--
-<?php
-$num = cal_days_in_month(CAL_GREGORIAN, 8, 2003);
-echo "There are $num days in August 2003\n";
-$num = cal_days_in_month(CAL_GREGORIAN, 2, 2003);
-echo "There are $num days in February 2003\n";
-$num = cal_days_in_month(CAL_GREGORIAN, 2, 2004);
-echo "There are $num days in February 2004\n";
-$num = cal_days_in_month(CAL_GREGORIAN, -1, -2003);
-echo "There are $num days in -1, -2003\n";
-$num = cal_days_in_month(CAL_GREGORIAN, 12, 2034);
-echo "There are $num days in December 2034\n";
-?>
---EXPECT--
-There are 31 days in August 2003
-There are 28 days in February 2003
-There are 29 days in February 2004
-There are 990210 days in -1, -2003
-There are 31 days in December 2034