2017-03-23 22:00:58 +03:00
|
|
|
var should = require('should'), // jshint ignore:line
|
2014-10-10 18:54:07 +04:00
|
|
|
|
|
|
|
// Stuff we are testing
|
2017-03-21 11:24:11 +03:00
|
|
|
helpers = require('../../../server/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('');
|
|
|
|
});
|
|
|
|
});
|