
The `or' and `and' functions already worked correctly; this fix is for `or' and `and' as applied directly to arguments, which expands to the `racket/base' `or' and `and' forms.
10 lines
194 B
Racket
10 lines
194 B
Racket
#lang racket/base
|
|
|
|
(require tests/eli-tester "promise.rkt" "forcers.rkt" "lang.rkt" "space.rkt")
|
|
|
|
(test do (promise-tests)
|
|
do (forcer-tests)
|
|
do (lang-tests)
|
|
do (space-tests))
|
|
|