erictgrubaugh
09/21/2016, 5:52 AM// my test harness
require("amd-loader");
var m = require("../../CL_example.js");
describe("CL_example.js", function () {
describe("#add()", function () {
it("should add two numbers", function () {
m.add(5, 7).should.equal(12);
});
});
});