Remove unused Jasmine matchers

This commit is contained in:
Éric Lemoine
2013-01-21 12:29:31 +01:00
parent 7f38c1683e
commit c6a8e5ef72

View File

@@ -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;
}