From b5c9f5e8b377d4f12d9dcfd2ee96640db1126bbc Mon Sep 17 00:00:00 2001 From: Marc Jansen Date: Fri, 10 Apr 2015 20:53:20 +0200 Subject: [PATCH] Add basic test for ol.Overlay --- test/spec/ol/overlay.test.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/spec/ol/overlay.test.js 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');