Add tests for ol.control.Rotate

This commit is contained in:
Frederic Junod
2016-01-27 15:43:25 +01:00
parent 9562756eeb
commit e53d8226db

View File

@@ -0,0 +1,16 @@
goog.provide('ol.test.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);
});
});
});
goog.require('ol.control.Rotate');