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