0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00
ghost/test/unit/helpers/post_class.test.js
Hannah Wolfe 1bbaf65a22
Removed need for index.js in frontend/helpers
- 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
2021-10-04 16:46:01 +01:00

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');
});
});