-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathempty-test.js
53 lines (49 loc) · 1.4 KB
/
empty-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
46
47
48
49
50
51
52
53
var vows = require("vows"),
load = require("../load"),
assert = require("../assert");
var suite = vows.describe("selection.empty");
suite.addBatch({
"select(body)": {
topic: load("selection/empty").document(),
"on a simple page": {
topic: function(d3) {
return d3.select("body");
},
"returns true for empty selections": function(body) {
assert.isTrue(body.select("foo").empty());
},
"returns false for non-empty selections": function(body) {
assert.isFalse(body.empty());
},
"ignores null nodes": function(body) {
body[0][0] = null;
assert.isTrue(body.empty());
}
}
}
});
suite.addBatch({
"selectAll(div)": {
topic: load("selection/empty").document(),
"on a simple page": {
topic: function(d3) {
var body = d3.select("body");
body.append("div").append("span");
body.append("div");
return body.selectAll("div");
},
"returns true for empty selections": function(div) {
assert.isTrue(div.select("foo").empty());
},
"returns false for non-empty selections": function(div) {
assert.isFalse(div.empty());
assert.isFalse(div.select("span").empty());
},
"ignores null nodes": function(div) {
div[0][0] = null;
assert.isTrue(div.select("span").empty());
}
}
}
});
suite.export(module);