X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fcore.js;h=70577837028659d68fae5db80abef7083ac17c18;hb=9fa9a570762c2b6dc6131b28b13547964d91be3e;hp=b634ade26094141f3d95f2f92efc5ad660c48f47;hpb=fc563cc42a4cf9b8d717f1fa4f397e76a132d90a;p=jquery.git diff --git a/test/unit/core.js b/test/unit/core.js index b634ade..7057783 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -547,15 +547,15 @@ test("toArray()", function() { }) test("get(Number)", function() { - expect(1); + expect(2); equals( jQuery("p").get(0), document.getElementById("firstp"), "Get A Single Element" ); + strictEqual( jQuery("#firstp").get(1), undefined, "Try get with index larger elements count" ); }); test("get(-Number)",function() { - expect(1); - equals( jQuery("p").get(-1), - document.getElementById("first"), - "Get a single element with negative index" ) + expect(2); + equals( jQuery("p").get(-1), document.getElementById("first"), "Get a single element with negative index" ); + strictEqual( jQuery("#firstp").get(-2), undefined, "Try get with index negative index larger then elements count" ); }) test("each(Function)", function() { @@ -848,20 +848,13 @@ test("jQuery.makeArray", function(){ }); test("jQuery.isEmptyObject", function(){ - expect(11); + expect(2); equals(true, jQuery.isEmptyObject({}), "isEmptyObject on empty object literal" ); equals(false, jQuery.isEmptyObject({a:1}), "isEmptyObject on non-empty object literal" ); - equals(false, jQuery.isEmptyObject(1), "isEmptyObject on number (wrong argument type)"); - equals(false, jQuery.isEmptyObject(0), "isEmptyObject on falsy number (wrong argument type)"); - equals(false, jQuery.isEmptyObject("test"), "isEmptyObject on string (wrong argument type)"); - equals(false, jQuery.isEmptyObject(""), "isEmptyObject on falsy string (wrong argument type)"); - equals(false, jQuery.isEmptyObject([1,2,3]), "isEmptyObject on array (wrong argument type)"); - equals(false, jQuery.isEmptyObject([]), "isEmptyObject on an empty array (wrong argument type)"); - equals(false, jQuery.isEmptyObject(undefined), "isEmptyObject on undefined (wrong argument type)"); - equals(false, jQuery.isEmptyObject(false), "isEmptyObject on undefined (wrong argument type)"); - equals(false, jQuery.isEmptyObject(null), "isEmptyObject on null (wrong argument type)" ); - + + // What about this ? + // equals(true, jQuery.isEmptyObject(null), "isEmptyObject on null" ); }); test("jQuery.proxy", function(){