Move layer files so they are named like their provides

This commit is contained in:
Tim Schaub
2016-08-06 12:37:35 -06:00
parent f07f78fbd7
commit 8ae6ffefc0
12 changed files with 1 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
goog.provide('ol.test.layer.Heatmap');
describe('ol.layer.Heatmap', function() {
describe('constructor', function() {
it('can be constructed without arguments', function() {
var instance = new ol.layer.Heatmap();
expect(instance).to.be.an(ol.layer.Heatmap);
});
});
});
goog.require('ol.layer.Heatmap');