Add basic test for ol.control.ScaleLine

This commit is contained in:
Marc Jansen
2015-04-07 22:56:37 +02:00
parent 479e723f0e
commit d14daa1938

View File

@@ -0,0 +1,16 @@
goog.provide('ol.test.control.ScaleLine');
describe('ol.control.ScaleLine', function() {
describe('constructor', function() {
it('can be constructed without arguments', function() {
var instance = new ol.control.ScaleLine();
expect(instance).to.be.an(ol.control.ScaleLine);
});
});
});
goog.require('ol.control.ScaleLine');