Add test for jQuery(jQueryObj) cloning and simplify new get() code
This commit is contained in:
parent
88bd74c732
commit
1a7f72e7fe
2 changed files with 6 additions and 4 deletions
|
@ -12,7 +12,7 @@ test("Basic requirements", function() {
|
|||
});
|
||||
|
||||
test("jQuery()", function() {
|
||||
expect(11);
|
||||
expect(12);
|
||||
|
||||
// Basic constructor's behavior
|
||||
|
||||
|
@ -21,6 +21,9 @@ test("jQuery()", function() {
|
|||
equals( jQuery(null).length, 0, "jQuery(null) === jQuery([])" );
|
||||
equals( jQuery("").length, 0, "jQuery('') === jQuery([])" );
|
||||
|
||||
var obj = jQuery("div")
|
||||
equals( jQuery(obj).selector, "div", "jQuery(jQueryObj) == jQueryObj" );
|
||||
|
||||
// can actually yield more than one, when iframes are included, the window is an array as well
|
||||
equals( 1, jQuery(window).length, "Correct number of elements generated for jQuery(window)" );
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue