Files
openlayers/test/spec/ol/control/rotate.test.js
2017-08-17 15:16:58 -04:00

17 lines
300 B
JavaScript

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