
Also fixed it to scan all scrbl files in the docs directory, use runtime-path, and change the rest to racket to get the quoted printout right.
10 lines
221 B
Racket
10 lines
221 B
Racket
#lang racket/base
|
|
|
|
(require tests/eli-tester
|
|
"reader.rkt" "preprocessor.rkt" "collect.rkt" "docs.rkt")
|
|
|
|
(test do (reader-tests)
|
|
do (begin/collect-tests)
|
|
do (preprocessor-tests)
|
|
do (docs-tests))
|