17 lines
354 B
JavaScript
17 lines
354 B
JavaScript
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');
|