mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 08:57:49 +00:00
Add test case for invoke w/ function reference.
This commit is contained in:
@@ -154,6 +154,13 @@ $(document).ready(function() {
|
|||||||
equals(result[1].join(', '), '1, 2, 3', 'second array sorted');
|
equals(result[1].join(', '), '1, 2, 3', 'second array sorted');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('collections: invoke w/ function reference', function() {
|
||||||
|
var list = [[5, 1, 7], [3, 2, 1]];
|
||||||
|
var result = _.invoke(list, Array.prototype.sort);
|
||||||
|
equals(result[0].join(', '), '1, 5, 7', 'first array sorted');
|
||||||
|
equals(result[1].join(', '), '1, 2, 3', 'second array sorted');
|
||||||
|
});
|
||||||
|
|
||||||
test('collections: pluck', function() {
|
test('collections: pluck', function() {
|
||||||
var people = [{name : 'moe', age : 30}, {name : 'curly', age : 50}];
|
var people = [{name : 'moe', age : 30}, {name : 'curly', age : 50}];
|
||||||
equals(_.pluck(people, 'name').join(', '), 'moe, curly', 'pulls names out of objects');
|
equals(_.pluck(people, 'name').join(', '), 'moe, curly', 'pulls names out of objects');
|
||||||
|
|||||||
Reference in New Issue
Block a user