Switched jQuery() to represent jQuery([]) instead of jQuery(document).

This commit is contained in:
John Resig 2009-12-09 20:36:07 -08:00
parent b846ad4ca0
commit 04524287d3
2 changed files with 2 additions and 4 deletions

View file

@ -16,7 +16,7 @@ test("jQuery()", function() {
// Basic constructor's behavior
equals( jQuery().length, 1, "jQuery() === jQuery(document)" );
equals( jQuery().length, 0, "jQuery() === jQuery([])" );
equals( jQuery(undefined).length, 0, "jQuery(undefined) === jQuery([])" );
equals( jQuery(null).length, 0, "jQuery(null) === jQuery([])" );
equals( jQuery("").length, 0, "jQuery('') === jQuery([])" );