Figuring out where tests go

svn: r6595
This commit is contained in:
Jay McCarthy 2007-06-12 15:12:46 +00:00
parent b49fe21434
commit cbe5d87131
7 changed files with 18 additions and 36 deletions

View File

@ -2,7 +2,12 @@
(require (planet "test.ss" ("schematics" "schemeunit.plt" 2)))
(provide dispatch-lang-tests)
; XXX
(define dispatch-lang-tests
(test-suite
"Web Language")))
"Web Language"
; XXX test web.ss
; XXX test web-extras.ss
; XXX test web-cells.ss
)))

View File

@ -44,6 +44,8 @@
(test-suite
"Servlets"
; XXX test update cache
(test-pred "configure.ss"
string?
(let* ([d (mkd (build-path example-servlets 'up "configure.ss"))]
@ -88,7 +90,7 @@
(test-suite
"servlet/web.ss"
; XXX
; XXX test web.ss
)
)))

View File

@ -4,10 +4,7 @@
"file-box-test.ss"
"labels-test.ss"
"stuff-url-test.ss"
"web-cells-test.ss"
"web-extras-test.ss"
"web-param-test.ss"
"web-test.ss")
"web-param-test.ss")
(provide all-lang-tests)
(define all-lang-tests
@ -17,7 +14,4 @@
file-box-tests
labels-tests
stuff-url-tests
web-cells-tests
web-extras-tests
web-param-tests
web-tests)))
web-param-tests)))

View File

@ -1,8 +0,0 @@
(module web-cells-test mzscheme
(require (planet "test.ss" ("schematics" "schemeunit.plt" 2)))
(provide web-cells-tests)
; XXX
(define web-cells-tests
(test-suite
"Web Cells")))

View File

@ -1,8 +0,0 @@
(module web-extras-test mzscheme
(require (planet "test.ss" ("schematics" "schemeunit.plt" 2)))
(provide web-extras-tests)
; XXX
(define web-extras-tests
(test-suite
"Web Extras")))

View File

@ -1,8 +0,0 @@
(module web-test mzscheme
(require (planet "test.ss" ("schematics" "schemeunit.plt" 2)))
(provide web-tests)
; XXX
(define web-tests
(test-suite
"Web")))

View File

@ -4,4 +4,9 @@
(define all-managers-tests
(test-suite
"Continuation Managers")))
"Continuation Managers"
; XXX test timeout.ss
; XXX test none.ss
; XXX test lru.ss
)))