test: Fixed linter errors

This commit is contained in:
Tobias Bieniek
2013-03-13 04:59:20 +01:00
parent 2245396bda
commit 01f9037782
2 changed files with 35 additions and 18 deletions

View File

@@ -18,7 +18,7 @@ describe('ol.Rectangle', function() {
beforeEach(function() {
rectangle1 = new ol.Rectangle(50, 50, 100, 100);
expect.Assertion.prototype.intersectWith = function(other) {
return this.obj.intersects(other);
return this.obj.intersects(other);
};
});
@@ -34,22 +34,38 @@ describe('ol.Rectangle', function() {
expect(rectangle1).to.intersectWith(new ol.Rectangle(80, 80, 120, 120));
expect(rectangle1).to.intersectWith(new ol.Rectangle(20, 20, 120, 120));
expect(rectangle1).to.intersectWith(new ol.Rectangle(70, 70, 80, 80));
expect(rectangle1).to.not.intersectWith(new ol.Rectangle(10, 10, 30, 30));
expect(rectangle1).to.not.intersectWith(new ol.Rectangle(30, 10, 70, 30));
expect(rectangle1).to.not.intersectWith(new ol.Rectangle(50, 10, 100, 30));
expect(rectangle1).to.not.intersectWith(new ol.Rectangle(80, 10, 120, 30));
expect(rectangle1).to.not.intersectWith(new ol.Rectangle(120, 10, 140, 30));
expect(rectangle1).to.not.intersectWith(new ol.Rectangle(10, 30, 30, 70));
expect(rectangle1).to.not.intersectWith(new ol.Rectangle(120, 30, 140, 70));
expect(rectangle1).to.not.intersectWith(new ol.Rectangle(10, 50, 30, 100));
expect(rectangle1).to.not.intersectWith(new ol.Rectangle(120, 50, 140, 100));
expect(rectangle1).to.not.intersectWith(new ol.Rectangle(10, 80, 30, 120));
expect(rectangle1).to.not.intersectWith(new ol.Rectangle(120, 80, 140, 120));
expect(rectangle1).to.not.intersectWith(new ol.Rectangle(10, 120, 30, 140));
expect(rectangle1).to.not.intersectWith(new ol.Rectangle(30, 120, 70, 140));
expect(rectangle1).to.not.intersectWith(new ol.Rectangle(50, 120, 100, 140));
expect(rectangle1).to.not.intersectWith(new ol.Rectangle(80, 120, 120, 140));
expect(rectangle1).to.not.intersectWith(new ol.Rectangle(120, 120, 140, 140));
expect(rectangle1).to.not.intersectWith(
new ol.Rectangle(10, 10, 30, 30));
expect(rectangle1).to.not.intersectWith(
new ol.Rectangle(30, 10, 70, 30));
expect(rectangle1).to.not.intersectWith(
new ol.Rectangle(50, 10, 100, 30));
expect(rectangle1).to.not.intersectWith(
new ol.Rectangle(80, 10, 120, 30));
expect(rectangle1).to.not.intersectWith(
new ol.Rectangle(120, 10, 140, 30));
expect(rectangle1).to.not.intersectWith(
new ol.Rectangle(10, 30, 30, 70));
expect(rectangle1).to.not.intersectWith(
new ol.Rectangle(120, 30, 140, 70));
expect(rectangle1).to.not.intersectWith(
new ol.Rectangle(10, 50, 30, 100));
expect(rectangle1).to.not.intersectWith(
new ol.Rectangle(120, 50, 140, 100));
expect(rectangle1).to.not.intersectWith(
new ol.Rectangle(10, 80, 30, 120));
expect(rectangle1).to.not.intersectWith(
new ol.Rectangle(120, 80, 140, 120));
expect(rectangle1).to.not.intersectWith(
new ol.Rectangle(10, 120, 30, 140));
expect(rectangle1).to.not.intersectWith(
new ol.Rectangle(30, 120, 70, 140));
expect(rectangle1).to.not.intersectWith(
new ol.Rectangle(50, 120, 100, 140));
expect(rectangle1).to.not.intersectWith(
new ol.Rectangle(80, 120, 120, 140));
expect(rectangle1).to.not.intersectWith(
new ol.Rectangle(120, 120, 140, 140));
});
});