mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -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
52 lines
1.6 KiB
JavaScript
52 lines
1.6 KiB
JavaScript
const should = require('should');
|
|
|
|
// Stuff we are testing
|
|
const post_class = require('../../../core/frontend/helpers/post_class');
|
|
|
|
describe('{{post_class}} helper', function () {
|
|
it('can render class string', function () {
|
|
const rendered = post_class.call({});
|
|
|
|
should.exist(rendered);
|
|
rendered.string.should.equal('post no-image');
|
|
});
|
|
|
|
it('can render class string without no-image class', function () {
|
|
const rendered = post_class.call({feature_image: 'blah'});
|
|
|
|
should.exist(rendered);
|
|
rendered.string.should.equal('post');
|
|
});
|
|
|
|
it('can render featured class', function () {
|
|
const post = {featured: true};
|
|
const rendered = post_class.call(post);
|
|
|
|
should.exist(rendered);
|
|
rendered.string.should.equal('post featured no-image');
|
|
});
|
|
|
|
it('can render featured class without no-image class', function () {
|
|
const post = {featured: true, feature_image: 'asdass'};
|
|
const rendered = post_class.call(post);
|
|
|
|
should.exist(rendered);
|
|
rendered.string.should.equal('post featured');
|
|
});
|
|
|
|
it('can render page class', function () {
|
|
const post = {page: true};
|
|
const rendered = post_class.call(post);
|
|
|
|
should.exist(rendered);
|
|
rendered.string.should.equal('post no-image page');
|
|
});
|
|
|
|
it('can render page class without no-image class', function () {
|
|
const post = {page: true, feature_image: 'asdasdas'};
|
|
const rendered = post_class.call(post);
|
|
|
|
should.exist(rendered);
|
|
rendered.string.should.equal('post page');
|
|
});
|
|
});
|