From 4b6fce84405471664e10294545eac11921952cc4 Mon Sep 17 00:00:00 2001 Message-Id: <4b6fce84405471664e10294545eac11921952cc4.1714427778.git.mdw@distorted.org.uk> From: Mark Wooding Date: Thu, 14 May 2020 13:45:36 +0100 Subject: [PATCH] test/unit: Add some tests to verify my ideas of how stuff works. Organization: Straylight/Edgeware From: Mark Wooding No bugs found, as expected. --- test/unit | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/unit b/test/unit index 9f5aee3..9667478 100755 --- a/test/unit +++ b/test/unit @@ -67,6 +67,8 @@ test next-matching-date {pat ref want} { {"*-*-* *:19:05" "2012-12-04 00:19:06" "2012-12-04 01:19:05"} {"*-*-31 01:02:03" "2012-11-03 04:05:06" "2012-12-31 01:02:03"} {"*/2-*/3-*/5 */7:*/11:*/13" "2011-12-04 00:00:04" "2012-03-05 00:00:00"} + {"*-03-01 00:00:00" "2020-05-14 13:44:09" "2021-03-01 00:00:00"} + {"*-03-01 00:00:00" "2021-03-01 00:25:04" "2022-03-01 00:00:00"} } -- [mdw]