deno.land / x / rambda@v9.1.1 / source / ifElse.spec.js

ifElse.spec.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import { always } from './always.js'import { has } from './has.js'import { identity } from './identity.js'import { ifElse } from './ifElse.js'import { prop } from './prop.js'
const condition = has('foo')const v = function (a){ return typeof a === 'number'}const t = function (a){ return a + 1}const ifFn = x => prop('foo', x).lengthconst elseFn = () => false
test('happy', () => { const fn = ifElse(condition, ifFn)(elseFn)
expect(fn({ foo : 'bar' })).toBe(3) expect(fn({ fo : 'bar' })).toBeFalse()})
test('ramda spec', () => { const ifIsNumber = ifElse(v) expect(ifIsNumber(t, identity)(15)).toBe(16) expect(ifIsNumber(t, identity)('hello')).toBe('hello')})
test('pass all arguments', () => { const identity = function (a){ return a } const v = function (){ return true } const onTrue = function (a, b){ expect(a).toBe(123) expect(b).toBe('abc') } ifElse( v, onTrue, identity )(123, 'abc')})
test('accept constant as condition', () => { const fn = ifElse(true)(always(true))(always(false))
expect(fn()).toBeTrue()})
test('accept constant as condition - case 2', () => { const fn = ifElse( false, always(true), always(false) )
expect(fn()).toBeFalse()})
test('curry 1', () => { const fn = ifElse(condition, ifFn)(elseFn)
expect(fn({ foo : 'bar' })).toBe(3) expect(fn({ fo : 'bar' })).toBeFalse()})
test('curry 2', () => { const fn = ifElse(condition)(ifFn)(elseFn)
expect(fn({ foo : 'bar' })).toBe(3) expect(fn({ fo : 'bar' })).toBeFalse()})
test('simple arity of 1', () => { const condition = x => x > 5 const onTrue = x => x + 1 const onFalse = x => x + 10 const result = ifElse( condition, onTrue, onFalse )(1) expect(result).toBe(11)})
test('simple arity of 2', () => { const condition = (x, y) => x + y > 5 const onTrue = (x, y) => x + y + 1 const onFalse = (x, y) => x + y + 10 const result = ifElse( condition, onTrue, onFalse )(1, 10) expect(result).toBe(12)})
rambda

Version Info

Tagged at
2 months ago