mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
Ref #14313: Further code and test improvements
This commit is contained in:
parent
c75c9a8ebb
commit
f66d53c856
10
src/core.js
10
src/core.js
@ -552,15 +552,13 @@ jQuery.extend({
|
||||
},
|
||||
|
||||
merge: function( first, second ) {
|
||||
var l = +second.length,
|
||||
i = first.length,
|
||||
j = 0;
|
||||
var len = +second.length,
|
||||
j = 0,
|
||||
i = first.length;
|
||||
|
||||
if ( l ) {
|
||||
for ( ; j < l; j++ ) {
|
||||
for ( ; j < len; j++ ) {
|
||||
first[ i++ ] = second[ j ];
|
||||
}
|
||||
}
|
||||
|
||||
first.length = i;
|
||||
|
||||
|
@ -903,25 +903,65 @@ test("jQuery.map", function() {
|
||||
});
|
||||
|
||||
test("jQuery.merge()", function() {
|
||||
expect(8);
|
||||
expect( 10 );
|
||||
|
||||
deepEqual( jQuery.merge([],[]), [], "Empty arrays" );
|
||||
deepEqual(
|
||||
jQuery.merge( [], [] ),
|
||||
[],
|
||||
"Empty arrays"
|
||||
);
|
||||
|
||||
deepEqual( jQuery.merge([ 1 ],[ 2 ]), [ 1, 2 ], "Basic" );
|
||||
deepEqual( jQuery.merge([ 1, 2 ], [ 3, 4 ]), [ 1, 2, 3, 4 ], "Basic" );
|
||||
deepEqual(
|
||||
jQuery.merge( [ 1 ], [ 2 ] ),
|
||||
[ 1, 2 ],
|
||||
"Basic (single-element)"
|
||||
);
|
||||
deepEqual(
|
||||
jQuery.merge( [ 1, 2 ], [ 3, 4 ] ),
|
||||
[ 1, 2, 3, 4 ],
|
||||
"Basic (multiple-element)"
|
||||
);
|
||||
|
||||
deepEqual( jQuery.merge([ 1, 2 ],[]), [ 1, 2 ], "Second empty" );
|
||||
deepEqual( jQuery.merge([],[ 1, 2 ]), [ 1, 2 ], "First empty" );
|
||||
deepEqual(
|
||||
jQuery.merge( [ 1, 2 ], [] ),
|
||||
[ 1, 2 ],
|
||||
"Second empty"
|
||||
);
|
||||
deepEqual(
|
||||
jQuery.merge( [], [ 1, 2 ] ),
|
||||
[ 1, 2 ],
|
||||
"First empty"
|
||||
);
|
||||
|
||||
// Fixed at [5998], #3641
|
||||
deepEqual( jQuery.merge([ -2, -1 ], [ 0, 1, 2 ]), [ -2, -1 , 0, 1, 2 ],
|
||||
"Second array including a zero (falsy)");
|
||||
deepEqual(
|
||||
jQuery.merge( [ -2, -1 ], [ 0, 1, 2 ] ),
|
||||
[ -2, -1 , 0, 1, 2 ],
|
||||
"Second array including a zero (falsy)"
|
||||
);
|
||||
|
||||
// After fixing #5527
|
||||
deepEqual( jQuery.merge([], [ null, undefined ]), [ null, undefined ],
|
||||
"Second array including null and undefined values");
|
||||
deepEqual( jQuery.merge({ length: 0 }, [ 1, 2 ] ), { length: 2, 0: 1, 1: 2},
|
||||
"First array like");
|
||||
deepEqual(
|
||||
jQuery.merge( [], [ null, undefined ] ),
|
||||
[ null, undefined ],
|
||||
"Second array including null and undefined values"
|
||||
);
|
||||
deepEqual(
|
||||
jQuery.merge( { length: 0 }, [ 1, 2 ] ),
|
||||
{ length: 2, 0: 1, 1: 2 },
|
||||
"First array like"
|
||||
);
|
||||
deepEqual(
|
||||
jQuery.merge( [ 1, 2 ], { length: 1, 0: 3 } ),
|
||||
[ 1, 2, 3 ],
|
||||
"Second array like"
|
||||
);
|
||||
|
||||
deepEqual(
|
||||
jQuery.merge( [], document.getElementById("lengthtest").getElementsByTagName("input") ),
|
||||
[ document.getElementById("length"), document.getElementById("idTest") ],
|
||||
"Second NodeList"
|
||||
);
|
||||
});
|
||||
|
||||
test("jQuery.extend(Object, Object)", function() {
|
||||
|
Loading…
Reference in New Issue
Block a user