df7e64fafa
refs #10790 - Moved /core/apps into core/frontend - Moved /core/server/helpers to /core/frontend/helpers along with /core/server/services/themes - Changed helper location in overrides - Moved /core/server/services/routing to /core/frontend/services - Moved /core/server/services/url to /core/frontend/services - Moved /core/server/data/meta to /core/frontend/meta - Moved /core/server/services/rss to /core/frontend/services - Moved /core/server/data/xml to /core/frontend/services
15 lines
531 B
JavaScript
15 lines
531 B
JavaScript
var should = require('should'),
|
|
hbs = require.main.require('core/frontend/services/themes/engine'),
|
|
template = require.main.require('core/frontend/helpers/template');
|
|
|
|
describe('Helpers Template', function () {
|
|
it('can execute a template', function () {
|
|
hbs.registerPartial('test', '<h1>Hello {{name}}</h1>');
|
|
|
|
var safeString = template.execute('test', {name: 'world'});
|
|
|
|
should.exist(safeString);
|
|
safeString.should.have.property('string').and.equal('<h1>Hello world</h1>');
|
|
});
|
|
});
|