add tests for handler.destroy

git-svn-id: http://svn.openlayers.org/trunk/openlayers@3697 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2007-07-11 16:54:32 +00:00
parent 8183fc6796
commit f8abf738fb

View File

@@ -92,16 +92,33 @@
// set browser event like properties on the handler
for(var i=0; i<events.length; ++i) {
setMethod(events[i]);
}
function setMethod(key) {
handler[key] = function() {return key};
// add in a closure for key
(function(key) {
handler[key] = function() {return key};
})(events[i]);
}
deactivated = handler.deactivate();
t.ok(deactivated,
"deactivated returns true if the handler is already active");
}
function test_Handler_destroy(t) {
t.plan(4);
var map = new OpenLayers.Map('map');
var control = new OpenLayers.Control();
map.addControl(control);
var handler = new OpenLayers.Handler(control);
t.ok(handler.control,
"handler has a control prior to destroy");
t.ok(handler.map,
"handler has a map prior to destroy");
handler.destroy();
t.eq(handler.control, null,
"hanlder.control is null after destroy");
t.eq(handler.map, null,
"handler.map is null after destroy");
}
// -->
</script>