2007-12-31 14:47:24 -05:00
|
|
|
USING: io io.files io.streams.string http.server.templating kernel tools.test
|
|
|
|
sequences ;
|
2007-09-20 18:09:08 -04:00
|
|
|
IN: temporary
|
|
|
|
|
|
|
|
: test-template ( path -- ? )
|
|
|
|
"extra/http/server/templating/test/" swap append
|
|
|
|
[
|
|
|
|
".fhtml" append resource-path
|
|
|
|
[ run-template-file ] string-out
|
|
|
|
] keep
|
2007-12-31 14:47:24 -05:00
|
|
|
".html" append resource-path file-contents = ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
[ t ] [ "example" test-template ] unit-test
|
|
|
|
[ t ] [ "bug" test-template ] unit-test
|
|
|
|
[ t ] [ "stack" test-template ] unit-test
|
|
|
|
|
|
|
|
[ ] [ "<%\n%>" parse-template drop ] unit-test
|