mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-03 08:25:06 +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>
63 lines
1.7 KiB
JavaScript
63 lines
1.7 KiB
JavaScript
var should = require('should'),
|
|
|
|
// Stuff we are testing
|
|
helpers = require('../../../core/frontend/helpers');
|
|
|
|
describe('{{plural}} helper', function () {
|
|
it('will show no-value string', function () {
|
|
var expected = 'No Posts',
|
|
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 () {
|
|
var expected = '0 Posts',
|
|
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 () {
|
|
var expected = '1 Post',
|
|
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 () {
|
|
var expected = '2 Posts',
|
|
rendered = helpers.plural.call({}, 2, {
|
|
hash: {
|
|
empty: 'No Posts',
|
|
singular: '% Post',
|
|
plural: '% Posts'
|
|
}
|
|
});
|
|
|
|
should.exist(rendered);
|
|
rendered.string.should.equal(expected);
|
|
});
|
|
});
|