Merge branch 'three' of https://github.com/tschaub/openlayers into three

This commit is contained in:
Mike Adair
2012-06-19 09:21:48 -04:00
4 changed files with 50 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
describe("ol.TileSet", function() {
describe("creating a tileset", function() {
it("creates a tileset instance", function() {
var tileset = new ol.TileSet();
expect(tileset instanceof ol.TileSet).toBe(true);
});
});
});