Files
openlayers/test/spec/ol/interaction/dragrotateandzoominteraction.test.js
2015-04-13 21:13:27 +02:00

17 lines
414 B
JavaScript

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');