forked from lodash/lodash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflow-methods.test.js
53 lines (42 loc) · 1.66 KB
/
flow-methods.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import assert from 'assert';
import lodashStable from 'lodash';
import { add, square, noop, identity } from './utils.js';
import head from '../head.js';
import map from '../map.js';
import uniq from '../uniq.js';
import flow from '../flow.js';
import flowRight from '../flowRight.js';
const methods = {
flow,
flowRight
}
describe('flow methods', function() {
lodashStable.each(['flow', 'flowRight'], function(methodName) {
var func = methods[methodName],
isFlow = methodName == 'flow';
it('`_.' + methodName + '` should supply each function with the return value of the previous', function() {
var fixed = function(n) { return n.toFixed(1); },
combined = isFlow ? func(add, square, fixed) : func(fixed, square, add);
assert.strictEqual(combined(1, 2), '9.0');
});
it('`_.' + methodName + '` should return a new function', function() {
assert.notStrictEqual(func(noop), noop);
});
it('`_.' + methodName + '` should work with a curried function and `_.head`', function() {
var curried = lodashStable.curry(identity);
var combined = isFlow
? func(head, curried)
: func(curried, head);
assert.strictEqual(combined([1]), 1);
});
it('`_.' + methodName + '` should work with curried functions with placeholders', function() {
var curried = lodashStable.curry(lodashStable.ary(map, 2), 2),
getProp = curried(curried.placeholder, (value) => value.a),
objects = [{ 'a': 1 }, { 'a': 2 }, { 'a': 1 }];
var combined = isFlow
? func(getProp, uniq)
: func(uniq, getProp);
assert.deepStrictEqual(combined(objects), [1, 2]);
});
});
});