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

17 lines
292 B
JavaScript

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