Files
openlayers/test/spec/ol/geolocation.test.js
2016-08-08 09:58:11 -06:00

18 lines
325 B
JavaScript

goog.provide('ol.test.Geolocation');
goog.require('ol.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);
});
});
});