Update rbush to 2.0.1

This commit is contained in:
tsauerwein
2016-07-01 12:01:48 +02:00
parent c56432cf2e
commit 749660dd22
4 changed files with 54 additions and 22 deletions

View File

@@ -362,6 +362,16 @@ describe('ol.structs.RBush', function() {
});
describe('#getExtent', function() {
it('gets the extent', function() {
var obj = {};
rBush.insert([0, 0, 1, 1], obj);
expect(rBush.getExtent()).to.eql([0, 0, 1, 1]);
});
});
});
goog.require('ol.structs.RBush');