Codebase list node-d3-shape / debian/1.3.5-1 test / symbols-test.js
debian/1.3.5-1

Tree @debian/1.3.5-1 (Download .tar.gz)

symbols-test.js @debian/1.3.5-1raw · history · blame

var tape = require("tape"),
    shape = require("../");

tape("symbols is the array of symbol types", function(test) {
  test.deepEqual(shape.symbols, [
    shape.symbolCircle,
    shape.symbolCross,
    shape.symbolDiamond,
    shape.symbolSquare,
    shape.symbolStar,
    shape.symbolTriangle,
    shape.symbolWye
  ]);
  test.end();
});