added a little experimental spike of a text and markup based template library for internal DSLs for templating (which external DSLs like Jade / Razor / Velocity / Erb / JSP style) could layer on top of. Mails to follow shortly :)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package std.template;
|
||||
|
||||
import std.template.html.*;
|
||||
|
||||
import junit.framework.TestSuite;
|
||||
|
||||
/**
|
||||
*/
|
||||
public class TemplateTestAll {
|
||||
public static TestSuite suite() {
|
||||
return new TestSuite(TemplateCoreTest.class, TemplateHtmlTest.class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user