2008-03-06 14:54:15 -05:00
|
|
|
USING: io io.files io.streams.string io.encodings.utf8
|
2008-05-23 20:16:21 -04:00
|
|
|
html.templates html.templates.fhtml kernel
|
2008-11-17 21:28:52 -05:00
|
|
|
tools.test sequences parser splitting prettyprint ;
|
2008-05-23 20:16:21 -04:00
|
|
|
IN: html.templates.fhtml.tests
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: test-template ( path -- ? )
|
2009-02-15 20:53:21 -05:00
|
|
|
"vocab:html/templates/fhtml/test/"
|
2008-03-19 20:15:32 -04:00
|
|
|
prepend
|
2008-11-21 21:09:23 -05:00
|
|
|
[ ".fhtml" append <fhtml> [ call-template ] with-string-writer ]
|
|
|
|
[ ".html" append utf8 file-contents ] bi
|
2008-11-17 21:28:52 -05:00
|
|
|
[ . . ] [ = ] 2bi ;
|
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
|
|
|
|
|
2008-03-08 03:51:26 -05:00
|
|
|
[
|
|
|
|
[ ] [ "<%\n%>" parse-template drop ] unit-test
|
|
|
|
] with-file-vocabs
|