#629 - remove events from geometry

git-svn-id: http://svn.openlayers.org/trunk/openlayers@2997 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2007-04-03 22:57:26 +00:00
parent 45407e9eda
commit 8647addda2
2 changed files with 1 additions and 16 deletions

View File

@@ -178,19 +178,13 @@
}
function test_99_Geometry_destroy(t) {
t.plan( 5 );
t.plan( 3 );
var g = new OpenLayers.Geometry();
g.bounds = new OpenLayers.Bounds();
g.feature = new Object();
g.events = {
'destroy': function() {
g_events_destroy = {};
}
};
g_style_destroy = null;
g_events_destroy = {};
g.destroy();
t.eq(g.id, null, "id nullified");
@@ -198,8 +192,6 @@
t.eq(g.bounds, null, "bounds nullified");
t.eq(g.feature, null, "feature reference nullified");
t.ok(g_events_destroy != null, "events.destroy() called on non-null events");
t.eq(g.events, null, "events nullified");
}