factor/basis/html/templates/fhtml/fhtml-tests.factor

20 lines
601 B
Factor
Raw Normal View History

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/"
prepend
[ ".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