Tile.test.js - remove test that sets a src on the image

This commit is contained in:
Éric Lemoine
2012-06-20 08:46:28 +02:00
parent fb8b1e878d
commit 84d594cacb

View File

@@ -11,14 +11,4 @@ describe("ol.Tile", function() {
});
});
describe("setting a source", function() {
var tile;
beforeEach(function() {
tile = new ol.Tile();
});
it("sets the image source", function() {
tile.setImgSrc("http://foo/img");
expect(tile.getImg().src).toEqual("http://foo/img");
});
});
});