Add basic test for ol.Geolocation

This commit is contained in:
Marc Jansen
2015-04-07 23:06:28 +02:00
parent 05f3f6852d
commit bfefc0666b

View File

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