Ghost/test/unit/helpers/title_spec.js
Hannah Wolfe 7f1d3ebc07
Move tests from core to root (#11700)
- move all test files from core/test to test/
- updated all imports and other references
- all code inside of core/ is then application code
- tests are correctly at the root level
- consistent with other repos/projects

Co-authored-by: Kevin Ansfield <kevin@lookingsideways.co.uk>
2020-03-30 16:26:47 +01:00

33 lines
936 B
JavaScript

var should = require('should'),
// Stuff we are testing
helpers = require('../../../core/frontend/helpers');
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('&lt;h1&gt;I am a title&lt;/h1&gt;');
});
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('');
});
});