Files
openlayers/test/spec/ol/interaction/dragrotateandzoom.test.js
2016-08-08 09:58:11 -06:00

17 lines
414 B
JavaScript

goog.provide('ol.test.interaction.DragRotateAndZoom');
goog.require('ol.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);
});
});
});