From c6a8e5ef7202777bdbb2baa8e07f9757906732b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Mon, 21 Jan 2013 12:29:31 +0100 Subject: [PATCH] Remove unused Jasmine matchers --- test/jasmine-extensions.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/test/jasmine-extensions.js b/test/jasmine-extensions.js index 46e24cb7ae..4649130908 100644 --- a/test/jasmine-extensions.js +++ b/test/jasmine-extensions.js @@ -4,12 +4,6 @@ beforeEach(function() { toBeA: function(type) { return this.actual instanceof type; }, - toBeGreaterThanOrEqualTo: function(other) { - return this.actual >= other; - }, - toBeLessThanOrEqualTo: function(other) { - return this.actual <= other; - }, toRoughlyEqual: function(other, tol) { return Math.abs(this.actual - other) <= tol; }