mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Selector: add test for jQuery.unique() alias
This commit is contained in:
parent
d9d930f79e
commit
17ce9edf1e
@ -386,7 +386,7 @@ test( "jQuery.contains", function() {
|
||||
});
|
||||
|
||||
test("jQuery.uniqueSort", function() {
|
||||
expect( 14 );
|
||||
expect( 15 );
|
||||
|
||||
function Arrayish( arr ) {
|
||||
var i = this.length = arr.length;
|
||||
@ -462,6 +462,8 @@ test("jQuery.uniqueSort", function() {
|
||||
deepEqual( jQuery.uniqueSort( test.input ).slice( 0, length ), test.expected, label + " (array)" );
|
||||
deepEqual( jQuery.uniqueSort( new Arrayish(test.input) ).slice( 0, length ), test.expected, label + " (quasi-array)" );
|
||||
});
|
||||
|
||||
strictEqual( jQuery.unique, jQuery.uniqueSort, "jQuery.unique() is an alias for jQuery.uniqueSort()" );
|
||||
});
|
||||
|
||||
testIframe("selector/sizzle_cache", "Sizzle cache collides with multiple Sizzles on a page", function( jQuery, window, document ) {
|
||||
|
Loading…
Reference in New Issue
Block a user