Skip to content
Permalink
Browse files
Merge branch '4321' of https://github.com/rwldrn/jquery into rwldrn-4321
  • Loading branch information
dmethvin committed Apr 6, 2011
2 parents c1316a4 + 5f52e61 commit 1e85027
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
@@ -17,7 +17,7 @@ var jQuery = function( selector, context ) {

// A simple way to check for HTML strings or ID strings
// (both of which we optimize for)
quickExpr = /^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,
quickExpr = /^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,

// Check if a string has a non-whitespace character in it
rnotwhite = /\S/,
@@ -12,14 +12,15 @@ test("Basic requirements", function() {
});

test("jQuery()", function() {
expect(24);
expect(25);

// Basic constructor's behavior

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([])" );
equals( jQuery("#").length, 0, "jQuery('#') === jQuery([])" );

var obj = jQuery("div");
equals( jQuery(obj).selector, "div", "jQuery(jQueryObj) == jQueryObj" );

0 comments on commit 1e85027

Please sign in to comment.