Rename control tests for consistency

This commit is contained in:
Tim Schaub
2016-08-06 11:43:14 -06:00
parent 684af3503c
commit 386e215b47
8 changed files with 0 additions and 0 deletions

View File

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