Make Class mixin tests a little more robust.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@2853 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Schuyler Erle
2007-03-22 18:16:09 +00:00
parent 78c16b973e
commit 1cd802c5f4

View File

@@ -31,6 +31,7 @@
var initA = 0;
A.prototype = {
count: 0,
mixed: false,
initialize: function () {
initA++;
this.count++;
@@ -95,7 +96,7 @@
t.ok( true, "IE sucks" );
t.ok( true, "IE sucks" );
}
t.eq( objC.mixed, true, "class C mixes has mixin properties" );
t.eq( objC.mixed, true, "class C has mixin properties" );
}
// -->