mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05:00
- The index.js file was actually loader code - It was mainly used by the unit tests, which needed to be rewritten to get each helper individually
31 lines
897 B
JavaScript
31 lines
897 B
JavaScript
const should = require('should');
|
|
|
|
// Stuff we are testing
|
|
const title = require('../../../core/frontend/helpers/title');
|
|
|
|
describe('{{title}} Helper', function () {
|
|
it('can render title', function () {
|
|
const rendered = title.call({title: 'Hello World'});
|
|
|
|
should.exist(rendered);
|
|
rendered.string.should.equal('Hello World');
|
|
});
|
|
|
|
it('escapes correctly', function () {
|
|
const rendered = 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 () {
|
|
const rendered = title.call({title: null});
|
|
|
|
rendered.string.should.equal('');
|
|
});
|
|
|
|
it('returns a blank string where data missing', function () {
|
|
const rendered = title.call({});
|
|
|
|
rendered.string.should.equal('');
|
|
});
|
|
});
|