racket/collects/tests/lazy/main.rkt
Matthew Flatt 9ca0c34cb2 lazy: fix or' and and' to not force last argument
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.
2012-02-19 07:38:29 -07:00

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))