Ghost/core/test/unit/helpers/title_spec.js
Naz Gargol df7e64fafa
Extracted frontend folder (#10780)
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
2019-06-19 11:30:28 +02:00

33 lines
927 B
JavaScript

var should = require('should'),
// Stuff we are testing
helpers = require('../../../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('');
});
});