Add to global tests, fixup dependencies.

This commit is contained in:
Dominik Pantůček 2023-05-10 17:14:55 +02:00
parent f6a32e7ff6
commit ece84932d1
3 changed files with 19 additions and 5 deletions

View file

@ -37,12 +37,16 @@
cal-day-month
cal-day-day
cal-day->cal-month
cal-day->month
cal-day-tests!
)
(import scheme
(chicken base)
util-tag
cal-month)
cal-month
testing)
;; Type tag
(define TAG-CAL-DAY (make-tag CAL-DAY))
@ -110,5 +114,11 @@
(cal-month-add M 1)
M)))
;; Module self-tests
(define (cal-day-tests!)
(run-tests
cal-day
))
)