Files
openlayers/test/spec/ol/geolocation.test.js
2015-04-13 21:13:27 +02:00

17 lines
324 B
JavaScript

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