-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdescending-test.js
45 lines (42 loc) · 1.42 KB
/
descending-test.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
var vows = require("vows"),
load = require("../load"),
assert = require("../assert");
var suite = vows.describe("d3.descending");
suite.addBatch({
"descending": {
topic: load("arrays/descending").expression("d3.descending"),
"numbers": {
"returns a negative number if a > b": function(descending) {
assert.isTrue(descending(1, 0) < 0);
},
"returns a positive number if a < b": function(descending) {
assert.isTrue(descending(0, 1) > 0);
},
"returns zero if a == b": function(descending) {
assert.equal(descending(0, 0), 0);
},
"returns NaN if a or b is undefined": function(descending) {
assert.isNaN(descending(0, undefined));
assert.isNaN(descending(undefined, 0));
assert.isNaN(descending(undefined, undefined));
},
"returns NaN if a or b is NaN": function(descending) {
assert.isNaN(descending(0, NaN));
assert.isNaN(descending(NaN, 0));
assert.isNaN(descending(NaN, NaN));
}
},
"strings": {
"returns a negative number if a > b": function(descending) {
assert.isTrue(descending("b", "a") < 0);
},
"returns a positive number if a < b": function(descending) {
assert.isTrue(descending("a", "b") > 0);
},
"returns zero if a == b": function(descending) {
assert.equal(descending("a", "a"), 0);
}
}
}
});
suite.export(module);