mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-09 02:17:50 +00:00
Add underscore tests to sauce.
This commit is contained in:
3
vendor/underscore/test/arrays.js
vendored
3
vendor/underscore/test/arrays.js
vendored
@@ -122,6 +122,9 @@ $(document).ready(function() {
|
||||
(function(){ args = arguments; })(1, 2, 3);
|
||||
result = _.union(args, [2, 30, 1], [1, 40]);
|
||||
equal(result.join(' '), '1 2 3 30 40', 'takes the union of a list of arrays');
|
||||
|
||||
result = _.union(null, [1, 2, 3]);
|
||||
deepEqual(result, [null, 1, 2, 3]);
|
||||
});
|
||||
|
||||
test("difference", function() {
|
||||
|
||||
Reference in New Issue
Block a user