Add eco object test

This commit is contained in:
kpdecker
2013-08-25 15:28:52 -05:00
parent 496ebaa1a8
commit 709d57b3c1
+1
View File
@@ -2,5 +2,6 @@ module.exports = {
context: { person: { name: "Larry", age: 45 } },
handlebars: "{{#with person}}{{name}}{{age}}{{/with}}",
dust: "{#person}{name}{age}{/person}",
eco: "<%= @person.name %><%= @person.age %>",
mustache: "{{#person}}{{name}}{{age}}{{/person}}"
};