You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
333 B

"use strict";
var assert = require("chai").assert
, ceil10 = require("../../math/ceil-10");
describe("math/ceil-10", function () {
it("Should ceil", function () {
assert.equal(ceil10(55.51, -1), 55.6);
assert.equal(ceil10(51, 1), 60);
assert.equal(ceil10(-55.59, -1), -55.5);
assert.equal(ceil10(-59, 1), -50);
});
});