2005-05-02 00:18:34 -04:00
|
|
|
! Copyright (C) 2004, 2005 Slava Pestov.
|
|
|
|
! See http://factor.sf.net/license.txt for BSD license.
|
2004-07-16 02:26:21 -04:00
|
|
|
IN: test-responder
|
2005-05-02 00:18:34 -04:00
|
|
|
USING: html httpd kernel test ;
|
2004-07-16 02:26:21 -04:00
|
|
|
|
|
|
|
: test-responder ( argument -- )
|
2004-08-10 23:48:08 -04:00
|
|
|
drop
|
|
|
|
serving-html
|
|
|
|
"Factor Test Suite" [ all-tests ] simple-html-document ;
|