diff --git a/test/spec/ol/overlay.test.js b/test/spec/ol/overlay.test.js new file mode 100644 index 0000000000..3f1f1e3790 --- /dev/null +++ b/test/spec/ol/overlay.test.js @@ -0,0 +1,16 @@ +goog.provide('ol.test.Overlay'); + +describe('ol.Overlay', function() { + + describe('constructor', function() { + + it('can be constructed with minimal arguments', function() { + var instance = new ol.Overlay({}); + expect(instance).to.be.an(ol.Overlay); + }); + + }); + +}); + +goog.require('ol.Overlay');