racket/collects/tests/lazy/main.rkt
Eli Barzilay 3cb4552e32 Minor fixes to `tests/lazy'.
* Make each test file runnable using `module+'.

* Make the space tests not print anything (unless they fail, of course).

* Make the `first-class?' case even "more first class" by defining their
  and/or as functions.  (Doesn't make a real difference for this test,
  but nice to test more of the language.)
2012-05-06 05:38:04 -04:00

9 lines
193 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))