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.FullScreen');
describe('ol.control.FullScreen', function() {
describe('constructor', function() {
it('can be constructed without arguments', function() {
var instance = new ol.control.FullScreen();
expect(instance).to.be.an(ol.control.FullScreen);
});
});
});
goog.require('ol.control.FullScreen');