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