mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 02:11:44 +03:00
7f1d3ebc07
- 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>
33 lines
936 B
JavaScript
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('<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('');
|
|
});
|
|
});
|