Add basic test for ol.interaction.DragRotateAndZoom

This commit is contained in:
Marc Jansen
2015-04-09 08:50:31 +02:00
parent 2609023a40
commit 3e4d6f0b02

View File

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