3bd0fa8b32
First part of reorganizing and cleaning up test-folders.
15 lines
322 B
JavaScript
15 lines
322 B
JavaScript
module.exports = {
|
|
context: {
|
|
names: [
|
|
{ name: 'Moe' },
|
|
{ name: 'Larry' },
|
|
{ name: 'Curly' },
|
|
{ name: 'Shemp' }
|
|
],
|
|
foo: 'bar'
|
|
},
|
|
handlebars: '{{#each names}}{{../foo}}{{/each}}',
|
|
mustache: '{{#names}}{{foo}}{{/names}}',
|
|
eco: '<% for item in @names: %><%= @foo %><% end %>'
|
|
};
|