Files
openlayers/test/spec/ol/control/rotate.test.js
2016-08-07 10:49:10 -06:00

17 lines
339 B
JavaScript

goog.provide('ol.test.control.Rotate');
describe('ol.control.Rotate', function() {
describe('constructor', function() {
it('can be constructed without arguments', function() {
var instance = new ol.control.Rotate();
expect(instance).to.be.an(ol.control.Rotate);
});
});
});
goog.require('ol.control.Rotate');