Sha256: 864025487be488eba31db39989b7de3e65fb417a6b56460eeea289f8ace7e09c

Contents?: true

Size: 311 Bytes

Versions: 5

Compression:

Stored size: 311 Bytes

Contents

describe("Control.Draw", function(){
	var map, control, container;

	beforeEach(function(){
		map = L.map(document.createElement('div'));
		control = new L.Control.Draw({

		}).addTo(map);
		container = control.getContainer();
	});

	it("exists", function() {
		expect(container.innerHTML).to.be.ok();
	});
});

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
leaflet-js-0.7.0.4 lib/leaflet.draw/spec/suites/DrawControlSpec.js
leaflet-js-0.7.0.3 lib/leaflet.draw/spec/suites/DrawControlSpec.js
leaflet-js-0.7.0.2 lib/leaflet.draw/spec/suites/DrawControlSpec.js
leaflet-js-0.7.0.1 lib/leaflet.draw/spec/suites/DrawControlSpec.js
leaflet-js-0.7.0 lib/leaflet.draw/spec/suites/DrawControlSpec.js