Move interaction files so they are named like their provides

This commit is contained in:
Tim Schaub
2016-08-06 11:58:07 -06:00
parent e8205a8293
commit 035885c25d
30 changed files with 0 additions and 0 deletions

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