mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 18:01:36 +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>
46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
const should = require('should');
|
|
const helpers = require('../../../core/frontend/helpers');
|
|
const handlebars = require('../../../core/frontend/services/themes/engine').handlebars;
|
|
|
|
function compile(templateString) {
|
|
const template = handlebars.compile(templateString);
|
|
template.with = (locals = {}, globals) => {
|
|
return template(locals, globals);
|
|
};
|
|
|
|
return template;
|
|
}
|
|
|
|
describe('{{price}} helper', function () {
|
|
before(function () {
|
|
handlebars.registerHelper('price', helpers.price);
|
|
});
|
|
|
|
it('throws an error for no provided parameters', function () {
|
|
(function compileWith() {
|
|
compile('{{price}}')
|
|
.with({});
|
|
}).should.throw();
|
|
});
|
|
|
|
it('throws an error for undefined parameter', function () {
|
|
(function compileWith() {
|
|
compile('{{price @dont.exist}}')
|
|
.with({});
|
|
}).should.throw();
|
|
});
|
|
|
|
it('throws if argument is not a number', function () {
|
|
(function compileWith() {
|
|
compile('{{price "not_a_number"}}')
|
|
.with({});
|
|
}).should.throw();
|
|
});
|
|
|
|
it('will format decimal adjusted amount', function () {
|
|
compile('{{price 2000}}')
|
|
.with({})
|
|
.should.equal('20');
|
|
});
|
|
});
|