More robust array type check. p=mwootendev, r=me (closes #2959)

git-svn-id: http://svn.openlayers.org/trunk/openlayers@12095 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2011-06-16 19:16:25 +00:00
parent 54cccc0783
commit 995d612caa
43 changed files with 97 additions and 59 deletions

View File

@@ -41,6 +41,28 @@
"isElement reports that object returned by getElement is an Element");
}
function test_isArray(t) {
t.plan(5);
var a;
a = null;
t.eq(OpenLayers.Util.isArray(a), false,
"isArray reports 'null' isn't an Array");
a = "Array";
t.eq(OpenLayers.Util.isArray(a), false,
"isArray reports \"Array\" isn't an Array");
a = {};
t.eq(OpenLayers.Util.isArray(a), false,
"isArray reports {} isn't an Array");
a = [];
t.eq(OpenLayers.Util.isArray(a), true,
"isArray reports [] is an Array");
a = new Array();
t.eq(OpenLayers.Util.isArray(a), true,
"isArray reports new Array() is an Array");
}
function test_$(t) {
t.plan(1);
t.ok($ === custom$, "OpenLayers doesn't clobber existing definition of $.");