
* 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.)
9 lines
193 B
Racket
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))
|