Backing out fb6c038bf00296480234c971a1664ac01ca1479e, was causing jQuery.param tests...
[jquery.git] / test / unit / core.js
index 85b8da6..7057783 100644 (file)
@@ -219,7 +219,7 @@ test("trim", function() {
 });
 
 test("type", function() {
-       expect(22);
+       expect(23);
 
        equals( jQuery.type(null), "null", "null" );
        equals( jQuery.type(undefined), "undefined", "undefined" );
@@ -240,6 +240,7 @@ test("type", function() {
        equals( jQuery.type(new Function("return;")), "function", "Function" );
        equals( jQuery.type(function(){}), "function", "Function" );
        equals( jQuery.type(window), "object", "Window" );
+       equals( jQuery.type(document), "object", "Document" );
        equals( jQuery.type(document.body), "object", "Element" );
        equals( jQuery.type(document.createTextNode("foo")), "object", "TextNode" );
        equals( jQuery.type(document.getElementsByTagName("*")), "object", "NodeList" );
@@ -546,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() {