Add tests for ol.control.Zoom

This commit is contained in:
Frederic Junod
2016-01-27 15:43:34 +01:00
parent e53d8226db
commit 2b523fff7c

View File

@@ -0,0 +1,16 @@
goog.provide('ol.test.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);
});
});
});
goog.require('ol.control.Zoom');