
* Another big chunk of v4-require-isms * Allow `#lang framework/keybinding-lang' for keybinding files * Move hierlist sources into "mrlib/hierlist", leave stub behind svn: r10689
23 lines
617 B
Scheme
23 lines
617 B
Scheme
#!/bin/sh
|
|
#|
|
|
exec mzscheme -r "$0" "$@"
|
|
|#
|
|
;; Mike Burns, July 28th, 2004, netgeek@speakeasy.net
|
|
;; Run from collects/tests/web-server/scheme-units
|
|
(require schemeunit/text-ui
|
|
"test-authentication.ss"
|
|
"test-serve-static-html.ss"
|
|
"test-serve-static-jpeg.ss"
|
|
"test-web-server.ss"
|
|
"test-servlets.ss"
|
|
"test-errors.ss"
|
|
"test-send.ss")
|
|
|
|
(test/text-ui test-web-server)
|
|
(test/text-ui test-serve-static-html)
|
|
(test/text-ui test-serve-static-jpeg)
|
|
(test/text-ui test-authentication)
|
|
(test/text-ui test-errors)
|
|
(test/text-ui test-servlets)
|
|
(test/text-ui test-send)
|