diff options
author | atsb <atsb@atsb> | 2020-04-22 20:31:34 +0200 |
---|---|---|
committer | atsb <atsb@atsb> | 2020-04-22 20:31:34 +0200 |
commit | 6360e88416763db759a8df2afab0b7ab0dfcb36e (patch) | |
tree | 9008b15f214aaa993f67fa4cd92f099b1bdc4a45 /tests/job-specifier.scm | |
parent | f22de155b8e75918c9030897a01e070a8af02661 (diff) | |
parent | 1eedf3b6d24f421ccdb8798b053ee718d1051651 (diff) | |
download | mcron-6360e88416763db759a8df2afab0b7ab0dfcb36e.tar.gz mcron-6360e88416763db759a8df2afab0b7ab0dfcb36e.tar.bz2 mcron-6360e88416763db759a8df2afab0b7ab0dfcb36e.zip |
merge from dm-v1.2.0 part 1
Diffstat (limited to 'tests/job-specifier.scm')
-rw-r--r-- | tests/job-specifier.scm | 32 |
1 files changed, 14 insertions, 18 deletions
diff --git a/tests/job-specifier.scm b/tests/job-specifier.scm index baf96af..70dd518 100644 --- a/tests/job-specifier.scm +++ b/tests/job-specifier.scm @@ -56,36 +56,32 @@ ;;; TODO: Find more meaningful date examples. +(setenv "TZ" ":UTC") + (test-equal "next-year" - (list 59989762800 1546293600) - (list (next-year '(1971)) + (list 1893456000 1546300800) + (list (next-year '(130)) ;; This is the year 2030. (next-year-from 1522095469))) (test-equal "next-month" - (list 28854000 5094000) - (list (next-month '(11)) - (next-month-from 101 '(0 2 4)))) + 5097600 + (next-month-from 101 '(0 2 4))) (test-equal "next-day" - (list 2588400 342000) - (list (next-day '(31)) - (next-day-from 4337 '(0 5 10)))) + 345600 + (next-day-from 4337 '(0 5 10))) (test-equal "next-hour" - '(3600 82800 3600) - (list (next-hour) - (next-hour '(0)) - (next-hour-from 3 '(0 1 2 3 4)))) + 3600 + (next-hour-from 3 '(0 1 2 3 4))) (test-equal "next-minute" - '(240 60) - (list (next-minute '(4 9)) - (next-minute-from 8))) + 60 + (next-minute-from 8)) (test-equal "next-second" - '(52 15) - (list (next-second '(52 55)) - (next-second-from 14))) + 15 + (next-second-from 14)) ;;; ;;; Check 'configuration-user' manipulation |