mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-27 00:25:06 +02:00
Add distancegrid spec
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
describe('distance grid', function () {
|
||||
it('addObject', function () {
|
||||
var grid = new L.DistanceGrid(100),
|
||||
obj = {};
|
||||
|
||||
expect(grid.addObject(obj, { x: 0, y: 0 })).to.eql(undefined);
|
||||
expect(grid.removeObject(obj, { x: 0, y: 0 })).to.eql(true);
|
||||
});
|
||||
|
||||
it('eachObject', function (done) {
|
||||
var grid = new L.DistanceGrid(100),
|
||||
obj = {};
|
||||
|
||||
expect(grid.addObject(obj, { x: 0, y: 0 })).to.eql(undefined);
|
||||
|
||||
grid.eachObject(function(o) {
|
||||
expect(o).to.eql(obj);
|
||||
done();
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user