Built motion from commit 1038d87.|0.0.141
[motion.git] / public / bower_components / lodash / test / underscore.html
index 468fef3..c1b4df2 100644 (file)
@@ -29,6 +29,9 @@
       QUnit.config.hidepassed = true;
       QUnit.config.excused = {
         'Arrays': {
+          'difference': [
+            'can perform an OO-style difference'
+          ],
           'drop': [
             'is an alias for rest'
           ],
             'is an alias for first'
           ],
           'uniq': [
-            'can find the unique values of an array using a custom iterator',
-            'can find the unique values of an array using a custom iterator without specifying whether array is sorted',
-            'string iterator works with sorted array',
-            'can use pluck like iterator',
+            'uses the result of `iterator` for uniqueness comparisons (unsorted case)',
+            '`sorted` argument defaults to false when omitted',
+            'when `iterator` is a string, uses that key for comparisons (unsorted case)',
+            'uses the result of `iterator` for uniqueness comparisons (sorted case)',
+            'when `iterator` is a string, uses that key for comparisons (sorted case)',
             'can use falsey pluck like iterator'
+          ],
+          'union': [
+            'can perform an OO-style union'
           ]
         },
         'Chaining': {
 
         require(getConfig(), [moduleId], function(lodash) {
           mixinPrereqs(lodash);
-
-          if (ui.isModularize) {
-            window._ = lodash;
-          }
           require(getConfig(), [
             'test/collections',
             'test/arrays',