openlayers
Version:
Build tools and sources for developing OpenLayers based mapping applications
17 lines (10 loc) • 329 B
JavaScript
goog.provide('ol.test.control.Zoom');
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);
});
});
});