forked from jakesgordon/javascript-state-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathempty.js
More file actions
79 lines (47 loc) · 2 KB
/
empty.js
File metadata and controls
79 lines (47 loc) · 2 KB
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
import test from 'ava'
import StateMachine from '../src/app'
//-------------------------------------------------------------------------------------------------
test('empty state machine', t => {
var fsm = new StateMachine();
t.is(fsm.state, 'none')
t.deepEqual(fsm.allStates(), [ 'none' ])
t.deepEqual(fsm.allTransitions(), [ ])
t.deepEqual(fsm.transitions(), [ ])
})
//-------------------------------------------------------------------------------------------------
test('empty state machine - but caller forgot new keyword', t => {
var fsm = StateMachine() // NOTE: missing 'new'
t.is(fsm.state, 'none')
t.deepEqual(fsm.allStates(), [ 'none' ])
t.deepEqual(fsm.allTransitions(), [ ])
t.deepEqual(fsm.transitions(), [ ])
})
//-------------------------------------------------------------------------------------------------
test('empty state machine - applied to existing object', t => {
var fsm = {};
StateMachine.apply(fsm)
t.is(fsm.state, 'none')
t.deepEqual(fsm.allStates(), [ 'none' ])
t.deepEqual(fsm.allTransitions(), [ ])
t.deepEqual(fsm.transitions(), [ ])
})
//-------------------------------------------------------------------------------------------------
test('empty state machine factory', t => {
var FSM = StateMachine.factory(),
fsm = new FSM();
t.is(fsm.state, 'none')
t.deepEqual(fsm.allStates(), [ 'none' ])
t.deepEqual(fsm.allTransitions(), [ ])
t.deepEqual(fsm.transitions(), [ ])
})
//-------------------------------------------------------------------------------------------------
test('empty state machine factory - applied to existing class', t => {
var FSM = function() { this._fsm() };
StateMachine.factory(FSM)
var fsm = new FSM()
t.is(fsm.state, 'none')
t.deepEqual(fsm.allStates(), [ 'none' ])
t.deepEqual(fsm.allTransitions(), [ ])
t.deepEqual(fsm.transitions(), [ ])
})
//-------------------------------------------------------------------------------------------------