forked from helpers/handlebars-helpers
-
Notifications
You must be signed in to change notification settings - Fork 14
/
math.js
109 lines (95 loc) · 3.28 KB
/
math.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
'use strict';
require('mocha');
var assert = require('assert');
var hbs = require('handlebars').create();
var helpers = require('..');
helpers.math({handlebars: hbs});
describe('math', function() {
describe('add', function() {
it('should return the sum of two numbers.', function() {
var fn = hbs.compile('{{add value 5}}');
assert.equal(fn({value: 5}), '10');
});
});
describe('average', function() {
it('should return the average of a list of numbers:', function() {
var fn = hbs.compile('{{avg 1 2 3 4}}');
assert.equal(fn(), '2.5');
});
it('should return the average of an array of numbers:', function() {
var fn = hbs.compile('{{avg array}}');
assert.equal(fn({array: [1, 3, 6, 9]}), '4.75');
});
});
describe('ceil', function() {
it('should return the value rounded up to the nearest integer.', function() {
var fn = hbs.compile('{{ceil value}}');
assert.equal(fn({value: 5.6}), '6');
});
});
describe('divide', function() {
it('should return the division of two numbers.', function() {
var fn = hbs.compile('{{divide value 5}}');
assert.equal(fn({value: 5}), '1');
});
});
describe('floor', function() {
it('should return the value rounded down to the nearest integer.', function() {
var fn = hbs.compile('{{floor value}}');
assert.equal(fn({value: 5.6}), '5');
});
});
describe('multiply', function() {
it('should return the multiplication of two numbers.', function() {
var fn = hbs.compile('{{multiply value 5}}');
assert.equal(fn({value: 5}), '25');
});
});
describe('remainder', function() {
it('should return the remainder of two numbers.', function() {
var fn = hbs.compile('{{remainder value 5}}');
assert.equal(fn({value: 7}), '2');
});
it('should take the sign of the dividend.', function() {
var fn = hbs.compile('{{remainder 5 -3}}');
assert.equal(fn(), '2');
});
});
describe('round', function() {
it('should return the value rounded to the nearest integer.', function() {
var fn = hbs.compile('{{round value}}');
assert.equal(fn({value: 5.69}), '6');
});
});
describe('subtract', function() {
it('should return the difference of two numbers.', function() {
var fn = hbs.compile('{{subtract value 5}}');
assert.equal(fn({value: 5}), '0');
});
});
describe('sum', function() {
it('should return the sum of multiple numbers.', function() {
var fn = hbs.compile('{{sum value 67 80}}');
assert.equal(fn({value: 20}), '167');
});
it('should return the sum of multiple numbers.', function() {
var fn = hbs.compile('{{sum 1 2 3}}');
assert.equal(fn(), '6');
});
it('should return the total sum of array.', function() {
var fn = hbs.compile('{{sum value}}');
assert.equal(fn({value: [1, 2, 3]}), '6');
});
it('should return the total sum of array and numbers.', function() {
var fn = hbs.compile('{{sum value 5}}');
assert.equal(fn({value: [1, 2, 3]}), '11');
});
});
describe('random', function() {
it('should return a random number between two values.', function() {
var fn = hbs.compile('{{random 5 10}}');
assert(fn() >= 5);
assert(fn() <= 10);
});
});
});