2018-06-02 22:48:23 +03:00
|
|
|
var should = require('should'),
|
2014-10-10 18:54:07 +04:00
|
|
|
|
2019-08-19 14:41:09 +03:00
|
|
|
// Stuff we are testing
|
2020-03-30 18:26:47 +03:00
|
|
|
helpers = require('../../../core/frontend/helpers');
|
2014-10-10 18:54:07 +04:00
|
|
|
|
|
|
|
describe('{{title}} Helper', function () {
|
|
|
|
it('can render title', function () {
|
|
|
|
var title = 'Hello World',
|
|
|
|
rendered = helpers.title.call({title: title});
|
|
|
|
|
|
|
|
should.exist(rendered);
|
|
|
|
rendered.string.should.equal(title);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('escapes correctly', function () {
|
|
|
|
var rendered = helpers.title.call({title: '<h1>I am a title</h1>'});
|
|
|
|
|
|
|
|
rendered.string.should.equal('<h1>I am a title</h1>');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns a blank string where title is missing', function () {
|
|
|
|
var rendered = helpers.title.call({title: null});
|
|
|
|
|
|
|
|
rendered.string.should.equal('');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns a blank string where data missing', function () {
|
|
|
|
var rendered = helpers.title.call({});
|
|
|
|
|
|
|
|
rendered.string.should.equal('');
|
|
|
|
});
|
|
|
|
});
|