From 291f071eff51bc0653aaf3dcfd777cc57437ebdf Mon Sep 17 00:00:00 2001 From: Ariel Flesler Date: Tue, 22 Apr 2008 23:07:35 +0000 Subject: [PATCH] - adding the tests for the changes to $.makeArray, proposed at #2619 --- test/unit/core.js | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/test/unit/core.js b/test/unit/core.js index 3cb90aa..412ba39 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -1561,3 +1561,30 @@ test("contents()", function() { equals( c.length, 1, "Check node,textnode,comment contents is just one" ); equals( c[0].nodeValue, "hi", "Check node,textnode,comment contents is just the one from span" ); }); + +test("makeArray(#2619)", function(){ + expect(11); + + equals( $.makeArray(document.getElementsByName("PWD")).slice(0,1)[0].name, "PWD", "Pass makeArray a nodelist" ); + + equals( (function(){ return $.makeArray(arguments); })(1,2).join(""), "12", "Pass makeArray an arguments array" ); + + equals( $.makeArray([1,2,3]).join(""), "123", "Pass makeArray a real array" ); + + equals( $.makeArray().length, 0, "Pass nothing to makeArray and expect an empty array" ); + + equals( $.makeArray( 0 )[0], 0 , "Pass makeArray a number" ); + + equals( $.makeArray( "foo" )[0], "foo", "Pass makeArray a string" ); + + equals( typeof $.makeArray( true )[0], "boolean", "Pass makeArray a boolean" ); + + equals( $.makeArray( document.createElement("div") )[0].nodeName, "DIV", "Pass makeArray a single node" ); + + equals( $.makeArray( {length:2, 0:"a", 1:"b"} ).join(""), "ab", "Pass makeArray an array like map (with length)" ); + + equals( $.makeArray( document.documentElement.childNodes ).slice(0,1)[0].nodeName, "HEAD", "Pass makeArray a childNodeson array" ); + + //function (tricky, they have length) + equals( $.makeArray( function(){ return 1;} )[0](), 1, "Pass makeArray a function" ); +}); \ No newline at end of file -- 1.7.10.4