Add another fp.inRange test.

This commit is contained in:
John-David Dalton
2016-02-11 22:57:25 -08:00
parent 53b3f81abe
commit b1ed66c6f5

View File

@@ -861,9 +861,10 @@
(function() {
QUnit.test('should have an argument order of `start`, `end`, then `value`', function(assert) {
assert.expect(1);
assert.expect(2);
assert.strictEqual(fp.inRange(2)(4)(3), true);
assert.strictEqual(fp.inRange(-2)(-6)(-3), true);
});
}());