17 lines
300 B
JavaScript
17 lines
300 B
JavaScript
|
|
|
|
goog.require('ol.control.Rotate');
|
|
|
|
describe('ol.control.Rotate', function() {
|
|
|
|
describe('constructor', function() {
|
|
|
|
it('can be constructed without arguments', function() {
|
|
var instance = new ol.control.Rotate();
|
|
expect(instance).to.be.an(ol.control.Rotate);
|
|
});
|
|
|
|
});
|
|
|
|
});
|