Add basic test for ol.Overlay

This commit is contained in:
Marc Jansen
2015-04-10 20:53:20 +02:00
parent 33788ddfd9
commit b5c9f5e8b3

View File

@@ -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');