aboutsummaryrefslogtreecommitdiffstats
path: root/web/nms.gathering.org/speedometer/d3-master/test/index-test.js
blob: f6e23abff4e2807d2c8ff4d30fa234404f057945 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
var vows = require("vows"),
    assert = require("./assert");

var suite = vows.describe("d3");

require("../");

suite.addBatch({
  "d3": {
    "is not a global when require’d": function() {
      assert.equal("d3" in global, false);
    }
  }
});

suite.export(module);