added lots of new tests that our documentation is complete
This commit is contained in:
parent
a373eac5d8
commit
e7d0029aea
6
collects/2htdp/tests/test-docs-complete.rkt
Normal file
6
collects/2htdp/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote 2htdp/universe))
|
||||||
|
(check-docs (quote 2htdp/universe-syntax-parse))
|
||||||
|
(check-docs (quote 2htdp/image))
|
||||||
|
(check-docs (quote 2htdp/batch-io))
|
12
collects/algol60/tests/test-docs-complete.rkt
Normal file
12
collects/algol60/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote algol60/tool))
|
||||||
|
(check-docs (quote algol60/simplify))
|
||||||
|
(check-docs (quote algol60/runtime))
|
||||||
|
(check-docs (quote algol60/prims))
|
||||||
|
(check-docs (quote algol60/parse))
|
||||||
|
(check-docs (quote algol60/compile))
|
||||||
|
(check-docs (quote algol60/cfg-parser))
|
||||||
|
(check-docs (quote algol60/bd-tool))
|
||||||
|
(check-docs (quote algol60/base))
|
||||||
|
(check-docs (quote algol60/algol60))
|
10
collects/browser/tests/test-docs-complete.rkt
Normal file
10
collects/browser/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote browser/tool))
|
||||||
|
(check-docs (quote browser))
|
||||||
|
(check-docs (quote browser/htmltext))
|
||||||
|
(check-docs (quote browser/external))
|
||||||
|
(check-docs (quote browser/bullet-snip))
|
||||||
|
(check-docs (quote browser/browser))
|
||||||
|
(check-docs (quote browser/browser-unit))
|
||||||
|
(check-docs (quote browser/browser-sig))
|
3
collects/combinator-parser/tests/test-docs-complete.rkt
Normal file
3
collects/combinator-parser/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote combinator-parser/combinator-unit))
|
25
collects/compiler/tests/test-docs-complete.rkt
Normal file
25
collects/compiler/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote compiler/zo-structs))
|
||||||
|
(check-docs (quote compiler/zo-parse))
|
||||||
|
(check-docs (quote compiler/zo-marshal))
|
||||||
|
(check-docs (quote compiler/xform))
|
||||||
|
(check-docs (quote compiler/to-core))
|
||||||
|
(check-docs (quote compiler/src2src))
|
||||||
|
(check-docs (quote compiler/sig))
|
||||||
|
(check-docs (quote compiler/option))
|
||||||
|
(check-docs (quote compiler/option-unit))
|
||||||
|
(check-docs (quote compiler))
|
||||||
|
(check-docs (quote compiler/find-exe))
|
||||||
|
(check-docs (quote compiler/embed))
|
||||||
|
(check-docs (quote compiler/embed-unit))
|
||||||
|
(check-docs (quote compiler/embed-sig))
|
||||||
|
(check-docs (quote compiler/distribute))
|
||||||
|
(check-docs (quote compiler/decompile))
|
||||||
|
(check-docs (quote compiler/compiler))
|
||||||
|
(check-docs (quote compiler/compiler-unit))
|
||||||
|
(check-docs (quote compiler/comp-unit))
|
||||||
|
(check-docs (quote compiler/cm))
|
||||||
|
(check-docs (quote compiler/cm-accomplice))
|
||||||
|
(check-docs (quote compiler/cffi))
|
||||||
|
(check-docs (quote compiler/bundle-dist))
|
4
collects/config/tests/test-docs-complete.rkt
Normal file
4
collects/config/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote config))
|
||||||
|
(check-docs (quote config/config))
|
9
collects/data/tests/test-docs-complete.rkt
Normal file
9
collects/data/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote data/splay-tree))
|
||||||
|
(check-docs (quote data/skip-list))
|
||||||
|
(check-docs (quote data/queue))
|
||||||
|
(check-docs (quote data/order))
|
||||||
|
(check-docs (quote data/interval-map))
|
||||||
|
(check-docs (quote data/heap))
|
||||||
|
(check-docs (quote data/gvector))
|
9
collects/datalog/tests/test-docs-complete.rkt
Normal file
9
collects/datalog/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote datalog/stx))
|
||||||
|
(check-docs (quote datalog/runtime))
|
||||||
|
(check-docs (quote datalog/pretty))
|
||||||
|
(check-docs (quote datalog/parse))
|
||||||
|
(check-docs (quote datalog))
|
||||||
|
(check-docs (quote datalog/eval))
|
||||||
|
(check-docs (quote datalog/ast))
|
24
collects/deinprogramm/tests/test-docs-complete.rkt
Normal file
24
collects/deinprogramm/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote deinprogramm/world))
|
||||||
|
(check-docs (quote deinprogramm/turtle))
|
||||||
|
(check-docs (quote deinprogramm/test-suite))
|
||||||
|
(check-docs (quote deinprogramm/syntax-checkers))
|
||||||
|
(check-docs (quote deinprogramm/run-dmda-code))
|
||||||
|
(check-docs (quote deinprogramm/line3d))
|
||||||
|
(check-docs (quote deinprogramm/line3d))
|
||||||
|
(check-docs (quote deinprogramm/image))
|
||||||
|
(check-docs (quote deinprogramm/DMdA))
|
||||||
|
(check-docs (quote deinprogramm/DMdA-vanilla))
|
||||||
|
(check-docs (quote deinprogramm/DMdA-vanilla-reader))
|
||||||
|
(check-docs (quote deinprogramm/DMdA-reader))
|
||||||
|
(check-docs (quote deinprogramm/DMdA-beginner))
|
||||||
|
(check-docs (quote deinprogramm/DMdA-beginner-reader))
|
||||||
|
(check-docs (quote deinprogramm/DMdA-assignments))
|
||||||
|
(check-docs (quote deinprogramm/DMdA-assignments-reader))
|
||||||
|
(check-docs (quote deinprogramm/DMdA-advanced))
|
||||||
|
(check-docs (quote deinprogramm/DMdA-advanced-reader))
|
||||||
|
(check-docs (quote deinprogramm/define-record-procedures))
|
||||||
|
(check-docs (quote deinprogramm/define-record-procedures))
|
||||||
|
(check-docs (quote deinprogramm/convert-explicit))
|
||||||
|
(check-docs (quote deinprogramm/convert-explicit))
|
16
collects/dynext/tests/test-docs-complete.rkt
Normal file
16
collects/dynext/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote dynext))
|
||||||
|
(check-docs (quote dynext/link))
|
||||||
|
(check-docs (quote dynext/link-unit))
|
||||||
|
(check-docs (quote dynext/link-sig))
|
||||||
|
(check-docs (quote dynext/filename-version))
|
||||||
|
(check-docs (quote dynext/file))
|
||||||
|
(check-docs (quote dynext/file-unit))
|
||||||
|
(check-docs (quote dynext/file-sig))
|
||||||
|
(check-docs (quote dynext/dynext))
|
||||||
|
(check-docs (quote dynext/dynext-unit))
|
||||||
|
(check-docs (quote dynext/dynext-sig))
|
||||||
|
(check-docs (quote dynext/compile))
|
||||||
|
(check-docs (quote dynext/compile-unit))
|
||||||
|
(check-docs (quote dynext/compile-sig))
|
4
collects/embedded-gui/tests/test-docs-complete.rkt
Normal file
4
collects/embedded-gui/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote embedded-gui))
|
||||||
|
(check-docs (quote embedded-gui/embedded-gui))
|
6
collects/eopl/tests/test-docs-complete.rkt
Normal file
6
collects/eopl/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote eopl))
|
||||||
|
(check-docs (quote eopl/eopl))
|
||||||
|
(check-docs (quote eopl/eopl-tool))
|
||||||
|
(check-docs (quote eopl/datatype))
|
9
collects/errortrace/tests/test-docs-complete.rkt
Normal file
9
collects/errortrace/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote errortrace/zo-compile))
|
||||||
|
(check-docs (quote errortrace/stacktrace))
|
||||||
|
(check-docs (quote errortrace))
|
||||||
|
(check-docs (quote errortrace/errortrace))
|
||||||
|
(check-docs (quote errortrace/errortrace-lib))
|
||||||
|
(check-docs (quote errortrace/errortrace-key))
|
||||||
|
(check-docs (quote errortrace/errortrace-key-syntax))
|
7
collects/ffi/tests/test-docs-complete.rkt
Normal file
7
collects/ffi/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote ffi/vector))
|
||||||
|
(check-docs (quote ffi/unsafe))
|
||||||
|
(check-docs (quote ffi/objc))
|
||||||
|
(check-docs (quote ffi/file))
|
||||||
|
(check-docs (quote ffi/cvector))
|
11
collects/file/tests/test-docs-complete.rkt
Normal file
11
collects/file/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote file/zip))
|
||||||
|
(check-docs (quote file/tar))
|
||||||
|
(check-docs (quote file/sha1))
|
||||||
|
(check-docs (quote file/resource))
|
||||||
|
(check-docs (quote file/md5))
|
||||||
|
(check-docs (quote file/gzip))
|
||||||
|
(check-docs (quote file/gunzip))
|
||||||
|
(check-docs (quote file/gif))
|
||||||
|
(check-docs (quote file/convertible))
|
13
collects/framework/tests/test-docs-complete.rkt
Normal file
13
collects/framework/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote framework/test))
|
||||||
|
(check-docs (quote framework/splash))
|
||||||
|
(check-docs (quote framework/preferences))
|
||||||
|
(check-docs (quote framework))
|
||||||
|
(check-docs (quote framework/gui-utils))
|
||||||
|
(check-docs (quote framework/framework))
|
||||||
|
(check-docs (quote framework/framework-unit))
|
||||||
|
(check-docs (quote framework/framework-sig))
|
||||||
|
(check-docs (quote framework/decorated-editor-snip))
|
||||||
|
(check-docs (quote framework/comment-snip))
|
||||||
|
(check-docs (quote framework/collapsed-snipclass))
|
10
collects/frtime/tests/test-docs-complete.rkt
Normal file
10
collects/frtime/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote frtime/struct))
|
||||||
|
(check-docs (quote frtime/reactive))
|
||||||
|
(check-docs (quote frtime))
|
||||||
|
(check-docs (quote frtime/gui))
|
||||||
|
(check-docs (quote frtime/frtime))
|
||||||
|
(check-docs (quote frtime/frtime-big))
|
||||||
|
(check-docs (quote frtime/frp-snip))
|
||||||
|
(check-docs (quote frtime/animation))
|
7
collects/games/tests/test-docs-complete.rkt
Normal file
7
collects/games/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote games/show-scribbling))
|
||||||
|
(check-docs (quote games/show-help))
|
||||||
|
(check-docs (quote games))
|
||||||
|
(check-docs (quote games/gl-board-game))
|
||||||
|
(check-docs (quote games/cards))
|
13
collects/graphics/tests/test-docs-complete.rkt
Normal file
13
collects/graphics/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote graphics/value-turtles))
|
||||||
|
(check-docs (quote graphics/value-turtles-test))
|
||||||
|
(check-docs (quote graphics/value-turtles-examples))
|
||||||
|
(check-docs (quote graphics/turtles))
|
||||||
|
(check-docs (quote graphics/turtle-test))
|
||||||
|
(check-docs (quote graphics/turtle-examples))
|
||||||
|
(check-docs (quote graphics))
|
||||||
|
(check-docs (quote graphics/graphics))
|
||||||
|
(check-docs (quote graphics/graphics-unit))
|
||||||
|
(check-docs (quote graphics/graphics-sig))
|
||||||
|
(check-docs (quote graphics/graphics-posn-less-unit))
|
6
collects/gui-debugger/tests/test-docs-complete.rkt
Normal file
6
collects/gui-debugger/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote gui-debugger/marks))
|
||||||
|
(check-docs (quote gui-debugger/load-sandbox))
|
||||||
|
(check-docs (quote gui-debugger/debug-tool))
|
||||||
|
(check-docs (quote gui-debugger/annotator))
|
16
collects/guibuilder/tests/test-docs-complete.rkt
Normal file
16
collects/guibuilder/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote guibuilder/utils))
|
||||||
|
(check-docs (quote guibuilder/top-level))
|
||||||
|
(check-docs (quote guibuilder/toolbar))
|
||||||
|
(check-docs (quote guibuilder/tool))
|
||||||
|
(check-docs (quote guibuilder/text-field))
|
||||||
|
(check-docs (quote guibuilder/slider-guage))
|
||||||
|
(check-docs (quote guibuilder/simple-control))
|
||||||
|
(check-docs (quote guibuilder/readable))
|
||||||
|
(check-docs (quote guibuilder/panel))
|
||||||
|
(check-docs (quote guibuilder/multiple-choice))
|
||||||
|
(check-docs (quote guibuilder/guibuilder))
|
||||||
|
(check-docs (quote guibuilder/feature))
|
||||||
|
(check-docs (quote guibuilder/canvas))
|
||||||
|
(check-docs (quote guibuilder/base))
|
7
collects/handin-client/tests/test-docs-complete.rkt
Normal file
7
collects/handin-client/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote handin-client/updater))
|
||||||
|
(check-docs (quote handin-client/this-collection))
|
||||||
|
(check-docs (quote handin-client/handin-multi))
|
||||||
|
(check-docs (quote handin-client/client))
|
||||||
|
(check-docs (quote handin-client/client-gui))
|
8
collects/handin-server/tests/test-docs-complete.rkt
Normal file
8
collects/handin-server/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote handin-server/web-status-server))
|
||||||
|
(check-docs (quote handin-server/utils))
|
||||||
|
(check-docs (quote handin-server/sandbox))
|
||||||
|
(check-docs (quote handin-server/run-servlet))
|
||||||
|
(check-docs (quote handin-server))
|
||||||
|
(check-docs (quote handin-server/checker))
|
7
collects/help/tests/test-docs-complete.rkt
Normal file
7
collects/help/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote help/search))
|
||||||
|
(check-docs (quote help/installer))
|
||||||
|
(check-docs (quote help/help))
|
||||||
|
(check-docs (quote help/help-utils))
|
||||||
|
(check-docs (quote help/bug-report))
|
3
collects/hierlist/tests/test-docs-complete.rkt
Normal file
3
collects/hierlist/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote hierlist/hierlist))
|
3
collects/honu/tests/test-docs-complete.rkt
Normal file
3
collects/honu/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote honu))
|
34
collects/htdp/tests/test-docs-complete.rkt
Normal file
34
collects/htdp/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote htdp/world))
|
||||||
|
(check-docs (quote htdp/testing))
|
||||||
|
(check-docs (quote htdp/show-queen))
|
||||||
|
(check-docs (quote htdp/servlet2))
|
||||||
|
(check-docs (quote htdp/servlet))
|
||||||
|
(check-docs (quote htdp/matrix))
|
||||||
|
(check-docs (quote htdp/matrix-unit))
|
||||||
|
(check-docs (quote htdp/matrix-sig))
|
||||||
|
(check-docs (quote htdp/matrix-render-sig))
|
||||||
|
(check-docs (quote htdp/matrix-invisible))
|
||||||
|
(check-docs (quote htdp/master))
|
||||||
|
(check-docs (quote htdp/master-play))
|
||||||
|
(check-docs (quote htdp/lkup-gui))
|
||||||
|
(check-docs (quote htdp/image))
|
||||||
|
(check-docs (quote htdp/hangman))
|
||||||
|
(check-docs (quote htdp/hangman-world))
|
||||||
|
(check-docs (quote htdp/hangman-world-play))
|
||||||
|
(check-docs (quote htdp/hangman-play))
|
||||||
|
(check-docs (quote htdp/gui))
|
||||||
|
(check-docs (quote htdp/guess))
|
||||||
|
(check-docs (quote htdp/guess-gui))
|
||||||
|
(check-docs (quote htdp/graphing))
|
||||||
|
(check-docs (quote htdp/error))
|
||||||
|
(check-docs (quote htdp/elevator))
|
||||||
|
(check-docs (quote htdp/draw))
|
||||||
|
(check-docs (quote htdp/draw-sig))
|
||||||
|
(check-docs (quote htdp/docs))
|
||||||
|
(check-docs (quote htdp/dir))
|
||||||
|
(check-docs (quote htdp/convert))
|
||||||
|
(check-docs (quote htdp/big-draw))
|
||||||
|
(check-docs (quote htdp/arrow))
|
||||||
|
(check-docs (quote htdp/arrow-gui))
|
7
collects/html/tests/test-docs-complete.rkt
Normal file
7
collects/html/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote html/sgml-reader))
|
||||||
|
(check-docs (quote html))
|
||||||
|
(check-docs (quote html/html))
|
||||||
|
(check-docs (quote html/html-structs))
|
||||||
|
(check-docs (quote html/html-spec))
|
22
collects/lang/tests/test-docs-complete.rkt
Normal file
22
collects/lang/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote lang/test-error))
|
||||||
|
(check-docs (quote lang/run-teaching-program))
|
||||||
|
(check-docs (quote lang/r5rs))
|
||||||
|
(check-docs (quote lang/prim))
|
||||||
|
(check-docs (quote lang/posn))
|
||||||
|
(check-docs (quote lang/plt-pretty-big))
|
||||||
|
(check-docs (quote lang/plt-pretty-big-text))
|
||||||
|
(check-docs (quote lang/imageeq))
|
||||||
|
(check-docs (quote lang/htdp-reader))
|
||||||
|
(check-docs (quote lang/htdp-intermediate))
|
||||||
|
(check-docs (quote lang/htdp-intermediate-reader))
|
||||||
|
(check-docs (quote lang/htdp-intermediate-lambda))
|
||||||
|
(check-docs (quote lang/htdp-intermediate-lambda-reader))
|
||||||
|
(check-docs (quote lang/htdp-beginner))
|
||||||
|
(check-docs (quote lang/htdp-beginner-reader))
|
||||||
|
(check-docs (quote lang/htdp-beginner-abbr))
|
||||||
|
(check-docs (quote lang/htdp-beginner-abbr-reader))
|
||||||
|
(check-docs (quote lang/htdp-advanced))
|
||||||
|
(check-docs (quote lang/htdp-advanced-reader))
|
||||||
|
(check-docs (quote lang/error))
|
6
collects/launcher/tests/test-docs-complete.rkt
Normal file
6
collects/launcher/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote launcher))
|
||||||
|
(check-docs (quote launcher/launcher))
|
||||||
|
(check-docs (quote launcher/launcher-unit))
|
||||||
|
(check-docs (quote launcher/launcher-sig))
|
7
collects/lazy/tests/test-docs-complete.rkt
Normal file
7
collects/lazy/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote lazy/mz-without-promises))
|
||||||
|
(check-docs (quote lazy))
|
||||||
|
(check-docs (quote lazy/lazy))
|
||||||
|
(check-docs (quote lazy/lazy-tool))
|
||||||
|
(check-docs (quote lazy/force))
|
8
collects/macro-debugger/tests/test-docs-complete.rkt
Normal file
8
collects/macro-debugger/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote macro-debugger/tool))
|
||||||
|
(check-docs (quote macro-debugger/syntax-browser))
|
||||||
|
(check-docs (quote macro-debugger/stepper))
|
||||||
|
(check-docs (quote macro-debugger/stepper-text))
|
||||||
|
(check-docs (quote macro-debugger/expand))
|
||||||
|
(check-docs (quote macro-debugger/emit))
|
10
collects/make/tests/test-docs-complete.rkt
Normal file
10
collects/make/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote make/setup-extension))
|
||||||
|
(check-docs (quote make/make))
|
||||||
|
(check-docs (quote make/make-unit))
|
||||||
|
(check-docs (quote make/make-sig))
|
||||||
|
(check-docs (quote make))
|
||||||
|
(check-docs (quote make/collection))
|
||||||
|
(check-docs (quote make/collection-unit))
|
||||||
|
(check-docs (quote make/collection-sig))
|
7
collects/meta/tests/test-docs-complete.rkt
Normal file
7
collects/meta/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote meta/specs))
|
||||||
|
(check-docs (quote meta/spec-reader))
|
||||||
|
(check-docs (quote meta/dist-specs))
|
||||||
|
(check-docs (quote meta/checker))
|
||||||
|
(check-docs (quote meta/check-dists))
|
9
collects/mred/tests/test-docs-complete.rkt
Normal file
9
collects/mred/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote mred/mred))
|
||||||
|
(check-docs (quote mred/mred-unit))
|
||||||
|
(check-docs (quote mred/mred-sig))
|
||||||
|
(check-docs (quote mred))
|
||||||
|
(check-docs (quote mred/installer))
|
||||||
|
(check-docs (quote mred/edit))
|
||||||
|
(check-docs (quote mred))
|
23
collects/mrlib/tests/test-docs-complete.rkt
Normal file
23
collects/mrlib/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote mrlib/text-string-style-desc))
|
||||||
|
(check-docs (quote mrlib/tex-table))
|
||||||
|
(check-docs (quote mrlib/tab-choice))
|
||||||
|
(check-docs (quote mrlib/syntax-browser))
|
||||||
|
(check-docs (quote mrlib/switchable-button))
|
||||||
|
(check-docs (quote mrlib/plot))
|
||||||
|
(check-docs (quote mrlib/path-dialog))
|
||||||
|
(check-docs (quote mrlib/name-message))
|
||||||
|
(check-docs (quote mrlib/matrix-snip))
|
||||||
|
(check-docs (quote mrlib/interactive-value-port))
|
||||||
|
(check-docs (quote mrlib/include-bitmap))
|
||||||
|
(check-docs (quote mrlib/image-core))
|
||||||
|
(check-docs (quote mrlib/image-core-wxme))
|
||||||
|
(check-docs (quote mrlib/hierlist))
|
||||||
|
(check-docs (quote mrlib/graph))
|
||||||
|
(check-docs (quote mrlib/gif))
|
||||||
|
(check-docs (quote mrlib/close-icon))
|
||||||
|
(check-docs (quote mrlib/click-forwarding-editor))
|
||||||
|
(check-docs (quote mrlib/cache-image-snip))
|
||||||
|
(check-docs (quote mrlib/bitmap-label))
|
||||||
|
(check-docs (quote mrlib/aligned-pasteboard))
|
6
collects/mysterx/tests/test-docs-complete.rkt
Normal file
6
collects/mysterx/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote mysterx/mysterx))
|
||||||
|
(check-docs (quote mysterx/mxdemo))
|
||||||
|
(check-docs (quote mysterx))
|
||||||
|
(check-docs (quote mysterx/installer))
|
3
collects/mzcom/tests/test-docs-complete.rkt
Normal file
3
collects/mzcom/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote mzcom/installer))
|
62
collects/mzlib/tests/test-docs-complete.rkt
Normal file
62
collects/mzlib/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote mzlib/zip))
|
||||||
|
(check-docs (quote mzlib/unitsig200))
|
||||||
|
(check-docs (quote mzlib/unitsig))
|
||||||
|
(check-docs (quote mzlib/unit200))
|
||||||
|
(check-docs (quote mzlib/unit))
|
||||||
|
(check-docs (quote mzlib/unit-exptime))
|
||||||
|
(check-docs (quote mzlib/transcr))
|
||||||
|
(check-docs (quote mzlib/trait))
|
||||||
|
(check-docs (quote mzlib/traceld))
|
||||||
|
(check-docs (quote mzlib/trace))
|
||||||
|
(check-docs (quote mzlib/thread))
|
||||||
|
(check-docs (quote mzlib/tar))
|
||||||
|
(check-docs (quote mzlib/surrogate))
|
||||||
|
(check-docs (quote mzlib/stxparam))
|
||||||
|
(check-docs (quote mzlib/struct))
|
||||||
|
(check-docs (quote mzlib/string))
|
||||||
|
(check-docs (quote mzlib/shared))
|
||||||
|
(check-docs (quote mzlib/serialize))
|
||||||
|
(check-docs (quote mzlib/sendevent))
|
||||||
|
(check-docs (quote mzlib/sandbox))
|
||||||
|
(check-docs (quote mzlib/runtime-path))
|
||||||
|
(check-docs (quote mzlib/restart))
|
||||||
|
(check-docs (quote mzlib/process))
|
||||||
|
(check-docs (quote mzlib/pretty))
|
||||||
|
(check-docs (quote mzlib/pregexp))
|
||||||
|
(check-docs (quote mzlib/port))
|
||||||
|
(check-docs (quote mzlib/plt-match))
|
||||||
|
(check-docs (quote mzlib/pconvert))
|
||||||
|
(check-docs (quote mzlib/pconvert-prop))
|
||||||
|
(check-docs (quote mzlib/os))
|
||||||
|
(check-docs (quote mzlib/md5))
|
||||||
|
(check-docs (quote mzlib/math))
|
||||||
|
(check-docs (quote mzlib/match))
|
||||||
|
(check-docs (quote mzlib/list))
|
||||||
|
(check-docs (quote mzlib/kw))
|
||||||
|
(check-docs (quote mzlib/integer-set))
|
||||||
|
(check-docs (quote mzlib/inflate))
|
||||||
|
(check-docs (quote mzlib/include))
|
||||||
|
(check-docs (quote mzlib/foreign))
|
||||||
|
(check-docs (quote mzlib/for))
|
||||||
|
(check-docs (quote mzlib/file))
|
||||||
|
(check-docs (quote mzlib/etc))
|
||||||
|
(check-docs (quote mzlib/defmacro))
|
||||||
|
(check-docs (quote mzlib/deflate))
|
||||||
|
(check-docs (quote mzlib/date))
|
||||||
|
(check-docs (quote mzlib/control))
|
||||||
|
(check-docs (quote mzlib/contract))
|
||||||
|
(check-docs (quote mzlib/compile))
|
||||||
|
(check-docs (quote mzlib/compat))
|
||||||
|
(check-docs (quote mzlib/cml))
|
||||||
|
(check-docs (quote mzlib/cmdline))
|
||||||
|
(check-docs (quote mzlib/cm))
|
||||||
|
(check-docs (quote mzlib/cm-accomplice))
|
||||||
|
(check-docs (quote mzlib/class100))
|
||||||
|
(check-docs (quote mzlib/class))
|
||||||
|
(check-docs (quote mzlib/class-traced))
|
||||||
|
(check-docs (quote mzlib/awk))
|
||||||
|
(check-docs (quote mzlib/async-channel))
|
||||||
|
(check-docs (quote mzlib/a-unit))
|
||||||
|
(check-docs (quote mzlib/a-signature))
|
57
collects/net/tests/test-docs-complete.rkt
Normal file
57
collects/net/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote net/websocket))
|
||||||
|
(check-docs (quote net/url))
|
||||||
|
(check-docs (quote net/url-unit))
|
||||||
|
(check-docs (quote net/url-structs))
|
||||||
|
(check-docs (quote net/url-sig))
|
||||||
|
(check-docs (quote net/uri-codec))
|
||||||
|
(check-docs (quote net/uri-codec-unit))
|
||||||
|
(check-docs (quote net/uri-codec-sig))
|
||||||
|
(check-docs (quote net/unihead))
|
||||||
|
(check-docs (quote net/tcp-unit))
|
||||||
|
(check-docs (quote net/tcp-sig))
|
||||||
|
(check-docs (quote net/tcp-redirect))
|
||||||
|
(check-docs (quote net/ssl-tcp-unit))
|
||||||
|
(check-docs (quote net/smtp))
|
||||||
|
(check-docs (quote net/smtp-unit))
|
||||||
|
(check-docs (quote net/smtp-sig))
|
||||||
|
(check-docs (quote net/sendurl))
|
||||||
|
(check-docs (quote net/sendmail))
|
||||||
|
(check-docs (quote net/sendmail-unit))
|
||||||
|
(check-docs (quote net/sendmail-sig))
|
||||||
|
(check-docs (quote net/qp))
|
||||||
|
(check-docs (quote net/qp-unit))
|
||||||
|
(check-docs (quote net/qp-sig))
|
||||||
|
(check-docs (quote net/pop3))
|
||||||
|
(check-docs (quote net/pop3-unit))
|
||||||
|
(check-docs (quote net/pop3-sig))
|
||||||
|
(check-docs (quote net/nntp))
|
||||||
|
(check-docs (quote net/nntp-unit))
|
||||||
|
(check-docs (quote net/nntp-sig))
|
||||||
|
(check-docs (quote net/mime))
|
||||||
|
(check-docs (quote net/mime-util))
|
||||||
|
(check-docs (quote net/mime-unit))
|
||||||
|
(check-docs (quote net/mime-sig))
|
||||||
|
(check-docs (quote net/imap))
|
||||||
|
(check-docs (quote net/imap-unit))
|
||||||
|
(check-docs (quote net/imap-sig))
|
||||||
|
(check-docs (quote net/head))
|
||||||
|
(check-docs (quote net/head-unit))
|
||||||
|
(check-docs (quote net/head-sig))
|
||||||
|
(check-docs (quote net/gifwrite))
|
||||||
|
(check-docs (quote net/ftp))
|
||||||
|
(check-docs (quote net/ftp-unit))
|
||||||
|
(check-docs (quote net/ftp-sig))
|
||||||
|
(check-docs (quote net/dns))
|
||||||
|
(check-docs (quote net/dns-unit))
|
||||||
|
(check-docs (quote net/dns-sig))
|
||||||
|
(check-docs (quote net/cookie))
|
||||||
|
(check-docs (quote net/cookie-unit))
|
||||||
|
(check-docs (quote net/cookie-sig))
|
||||||
|
(check-docs (quote net/cgi))
|
||||||
|
(check-docs (quote net/cgi-unit))
|
||||||
|
(check-docs (quote net/cgi-sig))
|
||||||
|
(check-docs (quote net/base64))
|
||||||
|
(check-docs (quote net/base64-unit))
|
||||||
|
(check-docs (quote net/base64-sig))
|
8
collects/openssl/tests/test-docs-complete.rkt
Normal file
8
collects/openssl/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote openssl/sha1))
|
||||||
|
(check-docs (quote openssl/openssl))
|
||||||
|
(check-docs (quote openssl/mzssl))
|
||||||
|
(check-docs (quote openssl))
|
||||||
|
(check-docs (quote openssl/libssl))
|
||||||
|
(check-docs (quote openssl/libcrypto))
|
7
collects/parser-tools/tests/test-docs-complete.rkt
Normal file
7
collects/parser-tools/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote parser-tools/yacc))
|
||||||
|
(check-docs (quote parser-tools/yacc-to-scheme))
|
||||||
|
(check-docs (quote parser-tools/lex))
|
||||||
|
(check-docs (quote parser-tools/lex-sre))
|
||||||
|
(check-docs (quote parser-tools/lex-plt-v200))
|
7
collects/picturing-programs/tests/test-docs-complete.rkt
Normal file
7
collects/picturing-programs/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote picturing-programs/tiles))
|
||||||
|
(check-docs (quote picturing-programs/map-image))
|
||||||
|
(check-docs (quote picturing-programs))
|
||||||
|
(check-docs (quote picturing-programs/io-stuff))
|
||||||
|
(check-docs (quote picturing-programs/book-pictures))
|
9
collects/plai/tests/test-docs-complete.rkt
Normal file
9
collects/plai/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote plai/web))
|
||||||
|
(check-docs (quote plai/test-harness))
|
||||||
|
(check-docs (quote plai/random-mutator))
|
||||||
|
(check-docs (quote plai/mutator))
|
||||||
|
(check-docs (quote plai))
|
||||||
|
(check-docs (quote plai/datatype))
|
||||||
|
(check-docs (quote plai/collector))
|
13
collects/planet/tests/test-docs-complete.rkt
Normal file
13
collects/planet/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote planet/version))
|
||||||
|
(check-docs (quote planet/util))
|
||||||
|
(check-docs (quote planet/syntax))
|
||||||
|
(check-docs (quote planet/scribble))
|
||||||
|
(check-docs (quote planet/resolver))
|
||||||
|
(check-docs (quote planet/raco))
|
||||||
|
(check-docs (quote planet/planet))
|
||||||
|
(check-docs (quote planet/planet-archives))
|
||||||
|
(check-docs (quote planet/parsereq))
|
||||||
|
(check-docs (quote planet/config))
|
||||||
|
(check-docs (quote planet/cachepath))
|
13
collects/plot/tests/test-docs-complete.rkt
Normal file
13
collects/plot/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote plot/view))
|
||||||
|
(check-docs (quote plot/renderers))
|
||||||
|
(check-docs (quote plot/renderer-helpers))
|
||||||
|
(check-docs (quote plot/plplot))
|
||||||
|
(check-docs (quote plot/plot))
|
||||||
|
(check-docs (quote plot/plot-extend))
|
||||||
|
(check-docs (quote plot/math))
|
||||||
|
(check-docs (quote plot))
|
||||||
|
(check-docs (quote plot/fit))
|
||||||
|
(check-docs (quote plot/fit-low-level))
|
||||||
|
(check-docs (quote plot/extend))
|
8
collects/preprocessor/tests/test-docs-complete.rkt
Normal file
8
collects/preprocessor/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote preprocessor/pp-utils))
|
||||||
|
(check-docs (quote preprocessor/pp-run))
|
||||||
|
(check-docs (quote preprocessor/mztext))
|
||||||
|
(check-docs (quote preprocessor/mztext-run))
|
||||||
|
(check-docs (quote preprocessor/mzpp))
|
||||||
|
(check-docs (quote preprocessor/mzpp-run))
|
9
collects/profile/tests/test-docs-complete.rkt
Normal file
9
collects/profile/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote profile/utils))
|
||||||
|
(check-docs (quote profile/structs))
|
||||||
|
(check-docs (quote profile/sampler))
|
||||||
|
(check-docs (quote profile/render-text))
|
||||||
|
(check-docs (quote profile/render-graphviz))
|
||||||
|
(check-docs (quote profile))
|
||||||
|
(check-docs (quote profile/analyzer))
|
6
collects/r5rs/tests/test-docs-complete.rkt
Normal file
6
collects/r5rs/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote r5rs/run))
|
||||||
|
(check-docs (quote r5rs/r5rs))
|
||||||
|
(check-docs (quote r5rs))
|
||||||
|
(check-docs (quote r5rs/init))
|
4
collects/r6rs/tests/test-docs-complete.rkt
Normal file
4
collects/r6rs/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote r6rs/run))
|
||||||
|
(check-docs (quote r6rs))
|
5
collects/racklog/tests/test-docs-complete.rkt
Normal file
5
collects/racklog/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote racklog/unify))
|
||||||
|
(check-docs (quote racklog/racklog))
|
||||||
|
(check-docs (quote racklog))
|
6
collects/rackunit/tests/test-docs-complete.rkt
Normal file
6
collects/rackunit/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote rackunit/tool))
|
||||||
|
(check-docs (quote rackunit/text-ui))
|
||||||
|
(check-docs (quote rackunit))
|
||||||
|
(check-docs (quote rackunit/gui))
|
6
collects/raco/tests/test-docs-complete.rkt
Normal file
6
collects/raco/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote raco/raco))
|
||||||
|
(check-docs (quote raco))
|
||||||
|
(check-docs (quote raco/command-name))
|
||||||
|
(check-docs (quote raco/all-tools))
|
8
collects/readline/tests/test-docs-complete.rkt
Normal file
8
collects/readline/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote readline/rep))
|
||||||
|
(check-docs (quote readline/rep-start))
|
||||||
|
(check-docs (quote readline/readline))
|
||||||
|
(check-docs (quote readline/pread))
|
||||||
|
(check-docs (quote readline/mzrl))
|
||||||
|
(check-docs (quote readline))
|
6
collects/redex/tests/test-docs-complete.rkt
Normal file
6
collects/redex/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote redex/reduction-semantics))
|
||||||
|
(check-docs (quote redex/pict))
|
||||||
|
(check-docs (quote redex))
|
||||||
|
(check-docs (quote redex/gui))
|
21
collects/rnrs/tests/test-docs-complete.rkt
Normal file
21
collects/rnrs/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote rnrs/unicode-6))
|
||||||
|
(check-docs (quote rnrs/syntax-case-6))
|
||||||
|
(check-docs (quote rnrs/sorting-6))
|
||||||
|
(check-docs (quote rnrs/r5rs-6))
|
||||||
|
(check-docs (quote rnrs/programs-6))
|
||||||
|
(check-docs (quote rnrs/mutable-strings-6))
|
||||||
|
(check-docs (quote rnrs/mutable-pairs-6))
|
||||||
|
(check-docs (quote rnrs))
|
||||||
|
(check-docs (quote rnrs))
|
||||||
|
(check-docs (quote rnrs/lists-6))
|
||||||
|
(check-docs (quote rnrs/hashtables-6))
|
||||||
|
(check-docs (quote rnrs/files-6))
|
||||||
|
(check-docs (quote rnrs/exceptions-6))
|
||||||
|
(check-docs (quote rnrs/eval-6))
|
||||||
|
(check-docs (quote rnrs/enums-6))
|
||||||
|
(check-docs (quote rnrs/control-6))
|
||||||
|
(check-docs (quote rnrs/conditions-6))
|
||||||
|
(check-docs (quote rnrs/bytevectors-6))
|
||||||
|
(check-docs (quote rnrs/base-6))
|
5
collects/schemeunit/tests/test-docs-complete.rkt
Normal file
5
collects/schemeunit/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote schemeunit/text-ui))
|
||||||
|
(check-docs (quote schemeunit))
|
||||||
|
(check-docs (quote schemeunit/gui))
|
38
collects/scribble/tests/test-docs-complete.rkt
Normal file
38
collects/scribble/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote scribble/xref))
|
||||||
|
(check-docs (quote scribble/urls))
|
||||||
|
(check-docs (quote scribble/text))
|
||||||
|
(check-docs (quote scribble/text-render))
|
||||||
|
(check-docs (quote scribble/struct))
|
||||||
|
(check-docs (quote scribble/srcdoc))
|
||||||
|
(check-docs (quote scribble/sigplan))
|
||||||
|
(check-docs (quote scribble/search))
|
||||||
|
(check-docs (quote scribble/scheme))
|
||||||
|
(check-docs (quote scribble/run))
|
||||||
|
(check-docs (quote scribble/render-struct))
|
||||||
|
(check-docs (quote scribble/reader))
|
||||||
|
(check-docs (quote scribble/racket))
|
||||||
|
(check-docs (quote scribble/provide-doc-transform))
|
||||||
|
(check-docs (quote scribble/pdf-render))
|
||||||
|
(check-docs (quote scribble/manual))
|
||||||
|
(check-docs (quote scribble/manual-struct))
|
||||||
|
(check-docs (quote scribble/lp))
|
||||||
|
(check-docs (quote scribble/lp-include))
|
||||||
|
(check-docs (quote scribble/latex-render))
|
||||||
|
(check-docs (quote scribble/latex-properties))
|
||||||
|
(check-docs (quote scribble/jfp))
|
||||||
|
(check-docs (quote scribble/html))
|
||||||
|
(check-docs (quote scribble/html-render))
|
||||||
|
(check-docs (quote scribble/html-properties))
|
||||||
|
(check-docs (quote scribble/extract))
|
||||||
|
(check-docs (quote scribble/eval))
|
||||||
|
(check-docs (quote scribble/decode))
|
||||||
|
(check-docs (quote scribble/decode-struct))
|
||||||
|
(check-docs (quote scribble/core))
|
||||||
|
(check-docs (quote scribble/config))
|
||||||
|
(check-docs (quote scribble/comment-reader))
|
||||||
|
(check-docs (quote scribble/bnf))
|
||||||
|
(check-docs (quote scribble/basic))
|
||||||
|
(check-docs (quote scribble/base))
|
||||||
|
(check-docs (quote scribble/base-render))
|
3
collects/scribblings/tests/test-docs-complete.rkt
Normal file
3
collects/scribblings/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote scribblings/icons))
|
7
collects/scriblib/tests/test-docs-complete.rkt
Normal file
7
collects/scriblib/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote scriblib/render-cond))
|
||||||
|
(check-docs (quote scriblib/gui-eval))
|
||||||
|
(check-docs (quote scriblib/footnote))
|
||||||
|
(check-docs (quote scriblib/figure))
|
||||||
|
(check-docs (quote scriblib/autobib))
|
28
collects/setup/tests/test-docs-complete.rkt
Normal file
28
collects/setup/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote setup/xref))
|
||||||
|
(check-docs (quote setup/winvers))
|
||||||
|
(check-docs (quote setup/winvers-change))
|
||||||
|
(check-docs (quote setup/variant))
|
||||||
|
(check-docs (quote setup/unpack))
|
||||||
|
(check-docs (quote setup/unixstyle-install))
|
||||||
|
(check-docs (quote setup/setup-unit))
|
||||||
|
(check-docs (quote setup/setup-go))
|
||||||
|
(check-docs (quote setup/setup-cmdline))
|
||||||
|
(check-docs (quote setup/scribble))
|
||||||
|
(check-docs (quote setup/plt-single-installer))
|
||||||
|
(check-docs (quote setup/plt-installer))
|
||||||
|
(check-docs (quote setup/plt-installer-unit))
|
||||||
|
(check-docs (quote setup/plt-installer-sig))
|
||||||
|
(check-docs (quote setup/path-relativize))
|
||||||
|
(check-docs (quote setup/parallel-do))
|
||||||
|
(check-docs (quote setup/parallel-build))
|
||||||
|
(check-docs (quote setup/pack))
|
||||||
|
(check-docs (quote setup/option-unit))
|
||||||
|
(check-docs (quote setup/option-sig))
|
||||||
|
(check-docs (quote setup))
|
||||||
|
(check-docs (quote setup))
|
||||||
|
(check-docs (quote setup))
|
||||||
|
(check-docs (quote setup/dirs))
|
||||||
|
(check-docs (quote setup/configtab))
|
||||||
|
(check-docs (quote setup/collects))
|
8
collects/sgl/tests/test-docs-complete.rkt
Normal file
8
collects/sgl/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote sgl/sgl))
|
||||||
|
(check-docs (quote sgl))
|
||||||
|
(check-docs (quote sgl/gl))
|
||||||
|
(check-docs (quote sgl/gl-vectors))
|
||||||
|
(check-docs (quote sgl/gl-types))
|
||||||
|
(check-docs (quote sgl/bitmap))
|
14
collects/sirmail/tests/test-docs-complete.rkt
Normal file
14
collects/sirmail/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote sirmail/utilr))
|
||||||
|
(check-docs (quote sirmail/spell))
|
||||||
|
(check-docs (quote sirmail/sirmails))
|
||||||
|
(check-docs (quote sirmail/sirmailr))
|
||||||
|
(check-docs (quote sirmail/sirmail))
|
||||||
|
(check-docs (quote sirmail/sendr))
|
||||||
|
(check-docs (quote sirmail/recover))
|
||||||
|
(check-docs (quote sirmail/readr))
|
||||||
|
(check-docs (quote sirmail/pref))
|
||||||
|
(check-docs (quote sirmail/optionr))
|
||||||
|
(check-docs (quote sirmail))
|
||||||
|
(check-docs (quote sirmail/folderr))
|
6
collects/slatex/tests/test-docs-complete.rkt
Normal file
6
collects/slatex/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote slatex/slatex))
|
||||||
|
(check-docs (quote slatex/slatex-wrapper))
|
||||||
|
(check-docs (quote slatex/slatex-launcher))
|
||||||
|
(check-docs (quote slatex/pdf-slatex-launcher))
|
26
collects/slideshow/tests/test-docs-complete.rkt
Normal file
26
collects/slideshow/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote slideshow/viewer))
|
||||||
|
(check-docs (quote slideshow/tutorial-show))
|
||||||
|
(check-docs (quote slideshow/tool))
|
||||||
|
(check-docs (quote slideshow/step))
|
||||||
|
(check-docs (quote slideshow/start))
|
||||||
|
(check-docs (quote slideshow/start-param))
|
||||||
|
(check-docs (quote slideshow/slideshow))
|
||||||
|
(check-docs (quote slideshow/slides-to-picts))
|
||||||
|
(check-docs (quote slideshow/slide))
|
||||||
|
(check-docs (quote slideshow/sig))
|
||||||
|
(check-docs (quote slideshow/run))
|
||||||
|
(check-docs (quote slideshow/play))
|
||||||
|
(check-docs (quote slideshow/pict))
|
||||||
|
(check-docs (quote slideshow/pict-snipclass))
|
||||||
|
(check-docs (quote slideshow/param))
|
||||||
|
(check-docs (quote slideshow))
|
||||||
|
(check-docs (quote slideshow/initial-ones))
|
||||||
|
(check-docs (quote slideshow/flash))
|
||||||
|
(check-docs (quote slideshow/face))
|
||||||
|
(check-docs (quote slideshow/core))
|
||||||
|
(check-docs (quote slideshow/code))
|
||||||
|
(check-docs (quote slideshow/cmdline))
|
||||||
|
(check-docs (quote slideshow/base))
|
||||||
|
(check-docs (quote slideshow/balloon))
|
56
collects/srfi/tests/test-docs-complete.rkt
Normal file
56
collects/srfi/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote srfi/provider))
|
||||||
|
(check-docs (quote srfi/optional))
|
||||||
|
(check-docs (quote srfi/features))
|
||||||
|
(check-docs (quote srfi/98))
|
||||||
|
(check-docs (quote srfi/9))
|
||||||
|
(check-docs (quote srfi/87))
|
||||||
|
(check-docs (quote srfi/86))
|
||||||
|
(check-docs (quote srfi/8))
|
||||||
|
(check-docs (quote srfi/78))
|
||||||
|
(check-docs (quote srfi/74))
|
||||||
|
(check-docs (quote srfi/71))
|
||||||
|
(check-docs (quote srfi/7))
|
||||||
|
(check-docs (quote srfi/69))
|
||||||
|
(check-docs (quote srfi/67))
|
||||||
|
(check-docs (quote srfi/66))
|
||||||
|
(check-docs (quote srfi/64))
|
||||||
|
(check-docs (quote srfi/63))
|
||||||
|
(check-docs (quote srfi/61))
|
||||||
|
(check-docs (quote srfi/60))
|
||||||
|
(check-docs (quote srfi/6))
|
||||||
|
(check-docs (quote srfi/59))
|
||||||
|
(check-docs (quote srfi/57))
|
||||||
|
(check-docs (quote srfi/54))
|
||||||
|
(check-docs (quote srfi/5))
|
||||||
|
(check-docs (quote srfi/48))
|
||||||
|
(check-docs (quote srfi/45))
|
||||||
|
(check-docs (quote srfi/43))
|
||||||
|
(check-docs (quote srfi/42ref))
|
||||||
|
(check-docs (quote srfi/42))
|
||||||
|
(check-docs (quote srfi/41))
|
||||||
|
(check-docs (quote srfi/40))
|
||||||
|
(check-docs (quote srfi/4))
|
||||||
|
(check-docs (quote srfi/39))
|
||||||
|
(check-docs (quote srfi/38))
|
||||||
|
(check-docs (quote srfi/35))
|
||||||
|
(check-docs (quote srfi/34))
|
||||||
|
(check-docs (quote srfi/32))
|
||||||
|
(check-docs (quote srfi/31))
|
||||||
|
(check-docs (quote srfi/30))
|
||||||
|
(check-docs (quote srfi/29))
|
||||||
|
(check-docs (quote srfi/28))
|
||||||
|
(check-docs (quote srfi/27))
|
||||||
|
(check-docs (quote srfi/26))
|
||||||
|
(check-docs (quote srfi/25))
|
||||||
|
(check-docs (quote srfi/23))
|
||||||
|
(check-docs (quote srfi/2))
|
||||||
|
(check-docs (quote srfi/19))
|
||||||
|
(check-docs (quote srfi/18))
|
||||||
|
(check-docs (quote srfi/17))
|
||||||
|
(check-docs (quote srfi/16))
|
||||||
|
(check-docs (quote srfi/14))
|
||||||
|
(check-docs (quote srfi/13))
|
||||||
|
(check-docs (quote srfi/11))
|
||||||
|
(check-docs (quote srfi/1))
|
4
collects/srpersist/tests/test-docs-complete.rkt
Normal file
4
collects/srpersist/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote srpersist/srpersist))
|
||||||
|
(check-docs (quote srpersist))
|
9
collects/stepper/tests/test-docs-complete.rkt
Normal file
9
collects/stepper/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote stepper/xml-tool))
|
||||||
|
(check-docs (quote stepper/xml-sig))
|
||||||
|
(check-docs (quote stepper/view-controller))
|
||||||
|
(check-docs (quote stepper/stepper-tool))
|
||||||
|
(check-docs (quote stepper/stepper+xml-tool))
|
||||||
|
(check-docs (quote stepper/drracket-button))
|
||||||
|
(check-docs (quote stepper/break))
|
17
collects/string-constants/tests/test-docs-complete.rkt
Normal file
17
collects/string-constants/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote string-constants/ukrainian-string-constants))
|
||||||
|
(check-docs (quote string-constants/traditional-chinese-string-constants))
|
||||||
|
(check-docs (quote string-constants/string-constant))
|
||||||
|
(check-docs (quote string-constants/spanish-string-constants))
|
||||||
|
(check-docs (quote string-constants/simplified-chinese-string-constants))
|
||||||
|
(check-docs (quote string-constants/russian-string-constants))
|
||||||
|
(check-docs (quote string-constants/portuguese-string-constants))
|
||||||
|
(check-docs (quote string-constants))
|
||||||
|
(check-docs (quote string-constants/korean-string-constants))
|
||||||
|
(check-docs (quote string-constants/japanese-string-constants))
|
||||||
|
(check-docs (quote string-constants/german-string-constants))
|
||||||
|
(check-docs (quote string-constants/french-string-constants))
|
||||||
|
(check-docs (quote string-constants/english-string-constants))
|
||||||
|
(check-docs (quote string-constants/dutch-string-constants))
|
||||||
|
(check-docs (quote string-constants/danish-string-constants))
|
13
collects/swindle/tests/test-docs-complete.rkt
Normal file
13
collects/swindle/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote swindle/turbo))
|
||||||
|
(check-docs (quote swindle/tool))
|
||||||
|
(check-docs (quote swindle/tiny-clos))
|
||||||
|
(check-docs (quote swindle/setf))
|
||||||
|
(check-docs (quote swindle/patterns))
|
||||||
|
(check-docs (quote swindle/misc))
|
||||||
|
(check-docs (quote swindle))
|
||||||
|
(check-docs (quote swindle/extra))
|
||||||
|
(check-docs (quote swindle/custom))
|
||||||
|
(check-docs (quote swindle/clos))
|
||||||
|
(check-docs (quote swindle/base))
|
9
collects/syntax-color/tests/test-docs-complete.rkt
Normal file
9
collects/syntax-color/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote syntax-color/token-tree))
|
||||||
|
(check-docs (quote syntax-color/scribble-lexer))
|
||||||
|
(check-docs (quote syntax-color/scheme-lexer))
|
||||||
|
(check-docs (quote syntax-color/paren-tree))
|
||||||
|
(check-docs (quote syntax-color/module-lexer))
|
||||||
|
(check-docs (quote syntax-color/ml))
|
||||||
|
(check-docs (quote syntax-color/default-lexer))
|
34
collects/syntax/tests/test-docs-complete.rkt
Normal file
34
collects/syntax/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote syntax/zodiac))
|
||||||
|
(check-docs (quote syntax/zodiac-unit))
|
||||||
|
(check-docs (quote syntax/zodiac-sig))
|
||||||
|
(check-docs (quote syntax/trusted-xforms))
|
||||||
|
(check-docs (quote syntax/toplevel))
|
||||||
|
(check-docs (quote syntax/to-string))
|
||||||
|
(check-docs (quote syntax/template))
|
||||||
|
(check-docs (quote syntax/stx))
|
||||||
|
(check-docs (quote syntax/struct))
|
||||||
|
(check-docs (quote syntax/strip-context))
|
||||||
|
(check-docs (quote syntax/srcloc))
|
||||||
|
(check-docs (quote syntax/readerr))
|
||||||
|
(check-docs (quote syntax/primitives))
|
||||||
|
(check-docs (quote syntax/path-spec))
|
||||||
|
(check-docs (quote syntax/parse))
|
||||||
|
(check-docs (quote syntax/name))
|
||||||
|
(check-docs (quote syntax/module-reader))
|
||||||
|
(check-docs (quote syntax/modresolve))
|
||||||
|
(check-docs (quote syntax/modread))
|
||||||
|
(check-docs (quote syntax/moddep))
|
||||||
|
(check-docs (quote syntax/modcollapse))
|
||||||
|
(check-docs (quote syntax/modcode))
|
||||||
|
(check-docs (quote syntax/location))
|
||||||
|
(check-docs (quote syntax/keyword))
|
||||||
|
(check-docs (quote syntax/kerncase))
|
||||||
|
(check-docs (quote syntax/id-table))
|
||||||
|
(check-docs (quote syntax/free-vars))
|
||||||
|
(check-docs (quote syntax/flatten-begin))
|
||||||
|
(check-docs (quote syntax/docprovide))
|
||||||
|
(check-docs (quote syntax/define))
|
||||||
|
(check-docs (quote syntax/context))
|
||||||
|
(check-docs (quote syntax/boundmap))
|
10
collects/teachpack/tests/test-docs-complete.rkt
Normal file
10
collects/teachpack/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote teachpack/world))
|
||||||
|
(check-docs (quote teachpack/value-turtles))
|
||||||
|
(check-docs (quote teachpack/turtles))
|
||||||
|
(check-docs (quote teachpack/server))
|
||||||
|
(check-docs (quote teachpack/picturing-programs))
|
||||||
|
(check-docs (quote teachpack/nuworld))
|
||||||
|
(check-docs (quote teachpack/door))
|
||||||
|
(check-docs (quote teachpack/balls))
|
3
collects/test-box-recovery/tests/test-docs-complete.rkt
Normal file
3
collects/test-box-recovery/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote test-box-recovery/tool))
|
11
collects/test-engine/tests/test-docs-complete.rkt
Normal file
11
collects/test-engine/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote test-engine/test-tool))
|
||||||
|
(check-docs (quote test-engine/test-engine))
|
||||||
|
(check-docs (quote test-engine/test-display))
|
||||||
|
(check-docs (quote test-engine/test-coverage))
|
||||||
|
(check-docs (quote test-engine/scheme-tests))
|
||||||
|
(check-docs (quote test-engine/scheme-gui))
|
||||||
|
(check-docs (quote test-engine/racket-tests))
|
||||||
|
(check-docs (quote test-engine/racket-gui))
|
||||||
|
(check-docs (quote test-engine/print))
|
6
collects/tests/tests/test-docs-complete.rkt
Normal file
6
collects/tests/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote tests/zo-size))
|
||||||
|
(check-docs (quote tests/stress))
|
||||||
|
(check-docs (quote tests/run-automated-tests))
|
||||||
|
(check-docs (quote tests/eli-tester))
|
6
collects/tex2page/tests/test-docs-complete.rkt
Normal file
6
collects/tex2page/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote tex2page/tex2page))
|
||||||
|
(check-docs (quote tex2page/tex2page-aux))
|
||||||
|
(check-docs (quote tex2page/start))
|
||||||
|
(check-docs (quote tex2page))
|
18
collects/texpict/tests/test-docs-complete.rkt
Normal file
18
collects/texpict/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote texpict/utils))
|
||||||
|
(check-docs (quote texpict/texpict))
|
||||||
|
(check-docs (quote texpict/texpict-unit))
|
||||||
|
(check-docs (quote texpict/texpict-sig))
|
||||||
|
(check-docs (quote texpict/symbol))
|
||||||
|
(check-docs (quote texpict/slideshow))
|
||||||
|
(check-docs (quote texpict/slideshow-run))
|
||||||
|
(check-docs (quote texpict/pict-value-snip))
|
||||||
|
(check-docs (quote texpict/mrpict))
|
||||||
|
(check-docs (quote texpict/mrpict-unit))
|
||||||
|
(check-docs (quote texpict/mrpict-sig))
|
||||||
|
(check-docs (quote texpict/flash))
|
||||||
|
(check-docs (quote texpict/face))
|
||||||
|
(check-docs (quote texpict/face-demo))
|
||||||
|
(check-docs (quote texpict/code))
|
||||||
|
(check-docs (quote texpict/balloon))
|
6
collects/trace/tests/test-docs-complete.rkt
Normal file
6
collects/trace/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote trace/stacktrace))
|
||||||
|
(check-docs (quote trace))
|
||||||
|
(check-docs (quote trace/calltrace))
|
||||||
|
(check-docs (quote trace/calltrace-lib))
|
5
collects/typed/tests/test-docs-complete.rkt
Normal file
5
collects/typed/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote typed/scheme))
|
||||||
|
(check-docs (quote typed/rackunit))
|
||||||
|
(check-docs (quote typed/racket))
|
29
collects/unstable/tests/test-docs-complete.rkt
Normal file
29
collects/unstable/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote unstable/wrapc))
|
||||||
|
(check-docs (quote unstable/syntax))
|
||||||
|
(check-docs (quote unstable/struct))
|
||||||
|
(check-docs (quote unstable/string))
|
||||||
|
(check-docs (quote unstable/sequence))
|
||||||
|
(check-docs (quote unstable/require))
|
||||||
|
(check-docs (quote unstable/prop-contract))
|
||||||
|
(check-docs (quote unstable/pretty))
|
||||||
|
(check-docs (quote unstable/port))
|
||||||
|
(check-docs (quote unstable/path))
|
||||||
|
(check-docs (quote unstable/mutated-vars))
|
||||||
|
(check-docs (quote unstable/match))
|
||||||
|
(check-docs (quote unstable/markparam))
|
||||||
|
(check-docs (quote unstable/list))
|
||||||
|
(check-docs (quote unstable/hash))
|
||||||
|
(check-docs (quote unstable/generics))
|
||||||
|
(check-docs (quote unstable/function))
|
||||||
|
(check-docs (quote unstable/find))
|
||||||
|
(check-docs (quote unstable/file))
|
||||||
|
(check-docs (quote unstable/exn))
|
||||||
|
(check-docs (quote unstable/dirs))
|
||||||
|
(check-docs (quote unstable/dict))
|
||||||
|
(check-docs (quote unstable/define))
|
||||||
|
(check-docs (quote unstable/debug))
|
||||||
|
(check-docs (quote unstable/contract))
|
||||||
|
(check-docs (quote unstable/class-iop))
|
||||||
|
(check-docs (quote unstable/bytes))
|
6
collects/version/tests/test-docs-complete.rkt
Normal file
6
collects/version/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote version/utils))
|
||||||
|
(check-docs (quote version/tool))
|
||||||
|
(check-docs (quote version/patchlevel))
|
||||||
|
(check-docs (quote version/check))
|
4
collects/waterworld/tests/test-docs-complete.rkt
Normal file
4
collects/waterworld/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote waterworld/wwdoc))
|
||||||
|
(check-docs (quote waterworld/waterworld))
|
17
collects/web-server/tests/test-docs-complete.rkt
Normal file
17
collects/web-server/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote web-server/web-server))
|
||||||
|
(check-docs (quote web-server/web-server-unit))
|
||||||
|
(check-docs (quote web-server/web-server-sig))
|
||||||
|
(check-docs (quote web-server/web-config-unit))
|
||||||
|
(check-docs (quote web-server/web-config-sig))
|
||||||
|
(check-docs (quote web-server/templates))
|
||||||
|
(check-docs (quote web-server/stuffers))
|
||||||
|
(check-docs (quote web-server/servlet))
|
||||||
|
(check-docs (quote web-server/servlet-env))
|
||||||
|
(check-docs (quote web-server/servlet-dispatch))
|
||||||
|
(check-docs (quote web-server/page))
|
||||||
|
(check-docs (quote web-server))
|
||||||
|
(check-docs (quote web-server/http))
|
||||||
|
(check-docs (quote web-server/formlets))
|
||||||
|
(check-docs (quote web-server/dispatch))
|
14
collects/wxme/tests/test-docs-complete.rkt
Normal file
14
collects/wxme/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote wxme/xml))
|
||||||
|
(check-docs (quote wxme/wxme))
|
||||||
|
(check-docs (quote wxme/text))
|
||||||
|
(check-docs (quote wxme/test-case))
|
||||||
|
(check-docs (quote wxme/scheme))
|
||||||
|
(check-docs (quote wxme/read))
|
||||||
|
(check-docs (quote wxme/number))
|
||||||
|
(check-docs (quote wxme))
|
||||||
|
(check-docs (quote wxme/image))
|
||||||
|
(check-docs (quote wxme/editor))
|
||||||
|
(check-docs (quote wxme/comment))
|
||||||
|
(check-docs (quote wxme/cache-image))
|
9
collects/xml/tests/test-docs-complete.rkt
Normal file
9
collects/xml/tests/test-docs-complete.rkt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require tests/utils/docs-complete)
|
||||||
|
(check-docs (quote xml/xml))
|
||||||
|
(check-docs (quote xml/xml-snipclass))
|
||||||
|
(check-docs (quote xml/text-snipclass))
|
||||||
|
(check-docs (quote xml/text-box-tool))
|
||||||
|
(check-docs (quote xml/scheme-snipclass))
|
||||||
|
(check-docs (quote xml/plist))
|
||||||
|
(check-docs (quote xml))
|
Loading…
Reference in New Issue
Block a user