Ghost/test/unit/helpers/plural_spec.js

67 lines
1.7 KiB
JavaScript
Raw Normal View History

const should = require('should');
// Stuff we are testing
const helpers = require('../../../core/frontend/helpers');
describe('{{plural}} helper', function () {
it('will show no-value string', function () {
const expected = 'No Posts';
const rendered = helpers.plural.call({}, 0, {
hash: {
empty: 'No Posts',
singular: '% Post',
plural: '% Posts'
}
});
should.exist(rendered);
rendered.string.should.equal(expected);
});
it('will show no-value string with placement', function () {
const expected = '0 Posts';
const rendered = helpers.plural.call({}, 0, {
hash: {
empty: '% Posts',
singular: '% Post',
plural: '% Posts'
}
});
should.exist(rendered);
rendered.string.should.equal(expected);
});
it('will show singular string', function () {
const expected = '1 Post';
const rendered = helpers.plural.call({}, 1, {
hash: {
empty: 'No Posts',
singular: '% Post',
plural: '% Posts'
}
});
should.exist(rendered);
rendered.string.should.equal(expected);
});
it('will show plural string', function () {
const expected = '2 Posts';
const rendered = helpers.plural.call({}, 2, {
hash: {
empty: 'No Posts',
singular: '% Post',
plural: '% Posts'
}
});
should.exist(rendered);
rendered.string.should.equal(expected);
});
});