diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2015-05-05 07:59:12 -0700 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2015-05-05 07:59:12 -0700 |
commit | add85afed5944ec10d68ca10e91421e031fe0a5d (patch) | |
tree | 88f617dca1515c0053ea63e680255e04d9affd9c | |
parent | e1090c3d2b2a988a5b41f1f1ed9f8d6dcae02200 (diff) | |
download | jquery-add85afed5944ec10d68ca10e91421e031fe0a5d.tar.gz jquery-add85afed5944ec10d68ca10e91421e031fe0a5d.zip |
Selector: add test for jQuery.unique() alias
-rw-r--r-- | test/unit/selector.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/unit/selector.js b/test/unit/selector.js index ee117ca8f..0edaa0c79 100644 --- a/test/unit/selector.js +++ b/test/unit/selector.js @@ -387,7 +387,7 @@ test( "jQuery.contains", function() { }); test("jQuery.uniqueSort", function() { - expect( 14 ); + expect( 15 ); function Arrayish( arr ) { var i = this.length = arr.length; @@ -463,6 +463,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 ) { |