
* Lists are now either blocks or splices depending on whether they appear inside a block or a splice (default to block). * Adjusted the docs and a single test where this mattered. * Change the documentation to be "text.html" and to be titled "text generation".
10 lines
215 B
Racket
10 lines
215 B
Racket
#lang racket/base
|
|
|
|
(require tests/eli-tester
|
|
"reader.rkt" "text-lang.rkt" "collect.rkt" "docs.rkt")
|
|
|
|
(test do (reader-tests)
|
|
do (begin/collect-tests)
|
|
do (text-lang-tests)
|
|
do (docs-tests))
|