From 894bd02a06fc10cfa9cb3ebd1a17d8ede533b919 Mon Sep 17 00:00:00 2001 From: Robert Katic Date: Fri, 10 Sep 2010 03:26:47 +0200 Subject: [PATCH] Test jQuery.type also with document. --- test/unit/core.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/unit/core.js b/test/unit/core.js index 85b8da6..7ef2ad7 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -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" ); -- 1.7.10.4