Add basic test for ol.interaction.DragRotateAndZoom
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
goog.provide('ol.test.interaction.DragRotateAndZoom');
|
||||
|
||||
describe('ol.interaction.DragRotateAndZoom', function() {
|
||||
|
||||
describe('constructor', function() {
|
||||
|
||||
it('can be constructed without arguments', function() {
|
||||
var instance = new ol.interaction.DragRotateAndZoom();
|
||||
expect(instance).to.be.an(ol.interaction.DragRotateAndZoom);
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
goog.require('ol.interaction.DragRotateAndZoom');
|
||||
Reference in New Issue
Block a user