Get 100% code coverage for the amap and afilter tests

This commit is contained in:
Suzanne Soy 2021-07-28 20:06:28 +01:00
parent 0562921c67
commit 81c21f81d8
2 changed files with 18 additions and 2 deletions

View File

@ -15,7 +15,15 @@
(afilter ((* it it) . > . 50) lst)
"Multiple 'it' in a nested expression.")
(define (f lst)
(afilter (= it 42) lst))
(check-equal?
'()
(afilter (= it 42) '())
(f '())
"Empty list.")
(check-exn
exn:fail?
(f '(1))
"To get 100% code coverage for the f function.")

View File

@ -13,7 +13,15 @@
(amap (number->string (+ it it)) '(1 2))
"Multiple 'it' in a nested expression.")
(define (f lst)
(amap (/ it 0) lst))
(check-equal?
'()
(amap (/ it 0) '())
(f '())
"Empty list.")
(check-exn
exn:fail?
(f '(1))
"To get 100% code coverage for the f function.")