Files
openlayers/test/spec/ol/control/zoomtoextent.test.js
2016-08-08 09:58:11 -06:00

17 lines
369 B
JavaScript

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