spree-state_machine 2.0.0.beta1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (140) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/.travis.yml +12 -0
  4. data/.yardopts +5 -0
  5. data/CHANGELOG.md +502 -0
  6. data/Gemfile +3 -0
  7. data/LICENSE +20 -0
  8. data/README.md +1246 -0
  9. data/Rakefile +20 -0
  10. data/examples/AutoShop_state.png +0 -0
  11. data/examples/Car_state.png +0 -0
  12. data/examples/Gemfile +5 -0
  13. data/examples/Gemfile.lock +14 -0
  14. data/examples/TrafficLight_state.png +0 -0
  15. data/examples/Vehicle_state.png +0 -0
  16. data/examples/auto_shop.rb +13 -0
  17. data/examples/car.rb +21 -0
  18. data/examples/doc/AutoShop.html +2856 -0
  19. data/examples/doc/AutoShop_state.png +0 -0
  20. data/examples/doc/Car.html +919 -0
  21. data/examples/doc/Car_state.png +0 -0
  22. data/examples/doc/TrafficLight.html +2230 -0
  23. data/examples/doc/TrafficLight_state.png +0 -0
  24. data/examples/doc/Vehicle.html +7921 -0
  25. data/examples/doc/Vehicle_state.png +0 -0
  26. data/examples/doc/_index.html +136 -0
  27. data/examples/doc/class_list.html +47 -0
  28. data/examples/doc/css/common.css +1 -0
  29. data/examples/doc/css/full_list.css +55 -0
  30. data/examples/doc/css/style.css +322 -0
  31. data/examples/doc/file_list.html +46 -0
  32. data/examples/doc/frames.html +13 -0
  33. data/examples/doc/index.html +136 -0
  34. data/examples/doc/js/app.js +205 -0
  35. data/examples/doc/js/full_list.js +173 -0
  36. data/examples/doc/js/jquery.js +16 -0
  37. data/examples/doc/method_list.html +734 -0
  38. data/examples/doc/top-level-namespace.html +105 -0
  39. data/examples/merb-rest/controller.rb +51 -0
  40. data/examples/merb-rest/model.rb +28 -0
  41. data/examples/merb-rest/view_edit.html.erb +24 -0
  42. data/examples/merb-rest/view_index.html.erb +23 -0
  43. data/examples/merb-rest/view_new.html.erb +13 -0
  44. data/examples/merb-rest/view_show.html.erb +17 -0
  45. data/examples/rails-rest/controller.rb +43 -0
  46. data/examples/rails-rest/migration.rb +7 -0
  47. data/examples/rails-rest/model.rb +23 -0
  48. data/examples/rails-rest/view__form.html.erb +34 -0
  49. data/examples/rails-rest/view_edit.html.erb +6 -0
  50. data/examples/rails-rest/view_index.html.erb +25 -0
  51. data/examples/rails-rest/view_new.html.erb +5 -0
  52. data/examples/rails-rest/view_show.html.erb +19 -0
  53. data/examples/traffic_light.rb +9 -0
  54. data/examples/vehicle.rb +33 -0
  55. data/lib/state_machine/assertions.rb +36 -0
  56. data/lib/state_machine/branch.rb +225 -0
  57. data/lib/state_machine/callback.rb +236 -0
  58. data/lib/state_machine/core.rb +7 -0
  59. data/lib/state_machine/core_ext/class/state_machine.rb +5 -0
  60. data/lib/state_machine/core_ext.rb +2 -0
  61. data/lib/state_machine/error.rb +13 -0
  62. data/lib/state_machine/eval_helpers.rb +87 -0
  63. data/lib/state_machine/event.rb +257 -0
  64. data/lib/state_machine/event_collection.rb +141 -0
  65. data/lib/state_machine/extensions.rb +149 -0
  66. data/lib/state_machine/graph.rb +92 -0
  67. data/lib/state_machine/helper_module.rb +17 -0
  68. data/lib/state_machine/initializers/rails.rb +25 -0
  69. data/lib/state_machine/initializers.rb +4 -0
  70. data/lib/state_machine/integrations/active_model/locale.rb +11 -0
  71. data/lib/state_machine/integrations/active_model/observer.rb +33 -0
  72. data/lib/state_machine/integrations/active_model/observer_update.rb +42 -0
  73. data/lib/state_machine/integrations/active_model/versions.rb +31 -0
  74. data/lib/state_machine/integrations/active_model.rb +585 -0
  75. data/lib/state_machine/integrations/active_record/locale.rb +20 -0
  76. data/lib/state_machine/integrations/active_record/versions.rb +123 -0
  77. data/lib/state_machine/integrations/active_record.rb +525 -0
  78. data/lib/state_machine/integrations/base.rb +100 -0
  79. data/lib/state_machine/integrations.rb +121 -0
  80. data/lib/state_machine/machine.rb +2287 -0
  81. data/lib/state_machine/machine_collection.rb +74 -0
  82. data/lib/state_machine/macro_methods.rb +522 -0
  83. data/lib/state_machine/matcher.rb +123 -0
  84. data/lib/state_machine/matcher_helpers.rb +54 -0
  85. data/lib/state_machine/node_collection.rb +222 -0
  86. data/lib/state_machine/path.rb +120 -0
  87. data/lib/state_machine/path_collection.rb +90 -0
  88. data/lib/state_machine/state.rb +297 -0
  89. data/lib/state_machine/state_collection.rb +112 -0
  90. data/lib/state_machine/state_context.rb +138 -0
  91. data/lib/state_machine/transition.rb +470 -0
  92. data/lib/state_machine/transition_collection.rb +245 -0
  93. data/lib/state_machine/version.rb +3 -0
  94. data/lib/state_machine/yard/handlers/base.rb +32 -0
  95. data/lib/state_machine/yard/handlers/event.rb +25 -0
  96. data/lib/state_machine/yard/handlers/machine.rb +344 -0
  97. data/lib/state_machine/yard/handlers/state.rb +25 -0
  98. data/lib/state_machine/yard/handlers/transition.rb +47 -0
  99. data/lib/state_machine/yard/handlers.rb +12 -0
  100. data/lib/state_machine/yard/templates/default/class/html/setup.rb +30 -0
  101. data/lib/state_machine/yard/templates/default/class/html/state_machines.erb +12 -0
  102. data/lib/state_machine/yard/templates.rb +3 -0
  103. data/lib/state_machine/yard.rb +8 -0
  104. data/lib/state_machine.rb +8 -0
  105. data/lib/yard-state_machine.rb +2 -0
  106. data/state_machine.gemspec +22 -0
  107. data/test/files/en.yml +17 -0
  108. data/test/files/switch.rb +15 -0
  109. data/test/functional/state_machine_test.rb +1066 -0
  110. data/test/test_helper.rb +7 -0
  111. data/test/unit/assertions_test.rb +40 -0
  112. data/test/unit/branch_test.rb +969 -0
  113. data/test/unit/callback_test.rb +704 -0
  114. data/test/unit/error_test.rb +43 -0
  115. data/test/unit/eval_helpers_test.rb +270 -0
  116. data/test/unit/event_collection_test.rb +398 -0
  117. data/test/unit/event_test.rb +1196 -0
  118. data/test/unit/graph_test.rb +98 -0
  119. data/test/unit/helper_module_test.rb +17 -0
  120. data/test/unit/integrations/active_model_test.rb +1245 -0
  121. data/test/unit/integrations/active_record_test.rb +2551 -0
  122. data/test/unit/integrations/base_test.rb +104 -0
  123. data/test/unit/integrations_test.rb +71 -0
  124. data/test/unit/invalid_event_test.rb +20 -0
  125. data/test/unit/invalid_parallel_transition_test.rb +18 -0
  126. data/test/unit/invalid_transition_test.rb +115 -0
  127. data/test/unit/machine_collection_test.rb +603 -0
  128. data/test/unit/machine_test.rb +3395 -0
  129. data/test/unit/matcher_helpers_test.rb +37 -0
  130. data/test/unit/matcher_test.rb +155 -0
  131. data/test/unit/node_collection_test.rb +362 -0
  132. data/test/unit/path_collection_test.rb +266 -0
  133. data/test/unit/path_test.rb +485 -0
  134. data/test/unit/state_collection_test.rb +352 -0
  135. data/test/unit/state_context_test.rb +441 -0
  136. data/test/unit/state_machine_test.rb +31 -0
  137. data/test/unit/state_test.rb +1101 -0
  138. data/test/unit/transition_collection_test.rb +2168 -0
  139. data/test/unit/transition_test.rb +1558 -0
  140. metadata +264 -0
@@ -0,0 +1,441 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
2
+
3
+ class Validateable
4
+ class << self
5
+ def validate(*args, &block)
6
+ args << block if block_given?
7
+ args
8
+ end
9
+ end
10
+ end
11
+
12
+ class StateContextTest < Test::Unit::TestCase
13
+ def setup
14
+ @klass = Class.new(Validateable)
15
+ @machine = StateMachine::Machine.new(@klass, :initial => :parked)
16
+ @state = @machine.state :parked
17
+
18
+ @state_context = StateMachine::StateContext.new(@state)
19
+ end
20
+
21
+ def test_should_have_a_machine
22
+ assert_equal @machine, @state_context.machine
23
+ end
24
+
25
+ def test_should_have_a_state
26
+ assert_equal @state, @state_context.state
27
+ end
28
+ end
29
+
30
+ class StateContextTransitionTest < Test::Unit::TestCase
31
+ def setup
32
+ @klass = Class.new
33
+ @machine = StateMachine::Machine.new(@klass, :initial => :parked)
34
+ @state = @machine.state :parked
35
+
36
+ @state_context = StateMachine::StateContext.new(@state)
37
+ end
38
+
39
+ def test_should_not_allow_except_to
40
+ exception = assert_raise(ArgumentError) { @state_context.transition(:except_to => :idling) }
41
+ assert_equal 'Invalid key(s): except_to', exception.message
42
+ end
43
+
44
+ def test_should_not_allow_except_from
45
+ exception = assert_raise(ArgumentError) { @state_context.transition(:except_from => :idling) }
46
+ assert_equal 'Invalid key(s): except_from', exception.message
47
+ end
48
+
49
+ def test_should_not_allow_implicit_transitions
50
+ exception = assert_raise(ArgumentError) { @state_context.transition(:parked => :idling) }
51
+ assert_equal 'Invalid key(s): parked', exception.message
52
+ end
53
+
54
+ def test_should_not_allow_except_on
55
+ exception = assert_raise(ArgumentError) { @state_context.transition(:except_on => :park) }
56
+ assert_equal 'Invalid key(s): except_on', exception.message
57
+ end
58
+
59
+ def test_should_require_on_event
60
+ exception = assert_raise(ArgumentError) { @state_context.transition(:to => :idling) }
61
+ assert_equal 'Must specify :on event', exception.message
62
+ end
63
+
64
+ def test_should_not_allow_missing_from_and_to
65
+ exception = assert_raise(ArgumentError) { @state_context.transition(:on => :ignite) }
66
+ assert_equal 'Must specify either :to or :from state', exception.message
67
+ end
68
+
69
+ def test_should_not_allow_from_and_to
70
+ exception = assert_raise(ArgumentError) { @state_context.transition(:on => :ignite, :from => :parked, :to => :idling) }
71
+ assert_equal 'Must specify either :to or :from state', exception.message
72
+ end
73
+
74
+ def test_should_allow_to_state_if_missing_from_state
75
+ assert_nothing_raised { @state_context.transition(:on => :park, :from => :parked) }
76
+ end
77
+
78
+ def test_should_allow_from_state_if_missing_to_state
79
+ assert_nothing_raised { @state_context.transition(:on => :ignite, :to => :idling) }
80
+ end
81
+
82
+ def test_should_automatically_set_to_option_with_from_state
83
+ branch = @state_context.transition(:from => :idling, :on => :park)
84
+ assert_instance_of StateMachine::Branch, branch
85
+
86
+ state_requirements = branch.state_requirements
87
+ assert_equal 1, state_requirements.length
88
+
89
+ from_requirement = state_requirements[0][:to]
90
+ assert_instance_of StateMachine::WhitelistMatcher, from_requirement
91
+ assert_equal [:parked], from_requirement.values
92
+ end
93
+
94
+ def test_should_automatically_set_from_option_with_to_state
95
+ branch = @state_context.transition(:to => :idling, :on => :ignite)
96
+ assert_instance_of StateMachine::Branch, branch
97
+
98
+ state_requirements = branch.state_requirements
99
+ assert_equal 1, state_requirements.length
100
+
101
+ from_requirement = state_requirements[0][:from]
102
+ assert_instance_of StateMachine::WhitelistMatcher, from_requirement
103
+ assert_equal [:parked], from_requirement.values
104
+ end
105
+
106
+ def test_should_allow_if_condition
107
+ assert_nothing_raised {@state_context.transition(:to => :idling, :on => :park, :if => :seatbelt_on?)}
108
+ end
109
+
110
+ def test_should_allow_unless_condition
111
+ assert_nothing_raised {@state_context.transition(:to => :idling, :on => :park, :unless => :seatbelt_off?)}
112
+ end
113
+
114
+ def test_should_include_all_transition_states_in_machine_states
115
+ @state_context.transition(:to => :idling, :on => :ignite)
116
+
117
+ assert_equal [:parked, :idling], @machine.states.map {|state| state.name}
118
+ end
119
+
120
+ def test_should_include_all_transition_events_in_machine_events
121
+ @state_context.transition(:to => :idling, :on => :ignite)
122
+
123
+ assert_equal [:ignite], @machine.events.map {|event| event.name}
124
+ end
125
+
126
+ def test_should_allow_multiple_events
127
+ @state_context.transition(:to => :idling, :on => [:ignite, :shift_up])
128
+
129
+ assert_equal [:ignite, :shift_up], @machine.events.map {|event| event.name}
130
+ end
131
+ end
132
+
133
+ class StateContextWithMatchingTransitionTest < Test::Unit::TestCase
134
+ def setup
135
+ @klass = Class.new
136
+ @machine = StateMachine::Machine.new(@klass, :initial => :parked)
137
+ @state = @machine.state :parked
138
+
139
+ @state_context = StateMachine::StateContext.new(@state)
140
+ @state_context.transition(:to => :idling, :on => :ignite)
141
+
142
+ @event = @machine.event(:ignite)
143
+ @object = @klass.new
144
+ end
145
+
146
+ def test_should_be_able_to_fire
147
+ assert @event.can_fire?(@object)
148
+ end
149
+
150
+ def test_should_have_a_transition
151
+ transition = @event.transition_for(@object)
152
+ assert_not_nil transition
153
+ assert_equal 'parked', transition.from
154
+ assert_equal 'idling', transition.to
155
+ assert_equal :ignite, transition.event
156
+ end
157
+ end
158
+
159
+ class StateContextProxyTest < Test::Unit::TestCase
160
+ def setup
161
+ @klass = Class.new(Validateable)
162
+ machine = StateMachine::Machine.new(@klass, :initial => :parked)
163
+ state = machine.state :parked
164
+
165
+ @state_context = StateMachine::StateContext.new(state)
166
+ end
167
+
168
+ def test_should_call_class_with_same_arguments
169
+ options = {}
170
+ validation = @state_context.validate(:name, options)
171
+
172
+ assert_equal [:name, options], validation
173
+ end
174
+
175
+ def test_should_pass_block_through_to_class
176
+ options = {}
177
+ proxy_block = lambda {}
178
+ validation = @state_context.validate(:name, options, &proxy_block)
179
+
180
+ assert_equal [:name, options, proxy_block], validation
181
+ end
182
+ end
183
+
184
+ class StateContextProxyWithoutConditionsTest < Test::Unit::TestCase
185
+ def setup
186
+ @klass = Class.new(Validateable)
187
+ machine = StateMachine::Machine.new(@klass, :initial => :parked)
188
+ state = machine.state :parked
189
+
190
+ @state_context = StateMachine::StateContext.new(state)
191
+ @object = @klass.new
192
+
193
+ @options = @state_context.validate[0]
194
+ end
195
+
196
+ def test_should_have_options_configuration
197
+ assert_instance_of Hash, @options
198
+ end
199
+
200
+ def test_should_have_if_option
201
+ assert_not_nil @options[:if]
202
+ end
203
+
204
+ def test_should_be_false_if_state_is_different
205
+ @object.state = nil
206
+ assert !@options[:if].call(@object)
207
+ end
208
+
209
+ def test_should_be_true_if_state_matches
210
+ assert @options[:if].call(@object)
211
+ end
212
+ end
213
+
214
+ class StateContextProxyWithIfConditionTest < Test::Unit::TestCase
215
+ def setup
216
+ @klass = Class.new(Validateable)
217
+ machine = StateMachine::Machine.new(@klass, :initial => :parked)
218
+ state = machine.state :parked
219
+
220
+ @state_context = StateMachine::StateContext.new(state)
221
+ @object = @klass.new
222
+
223
+ @condition_result = nil
224
+ @options = @state_context.validate(:if => lambda {@condition_result})[0]
225
+ end
226
+
227
+ def test_should_have_if_option
228
+ assert_not_nil @options[:if]
229
+ end
230
+
231
+ def test_should_be_false_if_state_is_different
232
+ @object.state = nil
233
+ assert !@options[:if].call(@object)
234
+ end
235
+
236
+ def test_should_be_false_if_original_condition_is_false
237
+ @condition_result = false
238
+ assert !@options[:if].call(@object)
239
+ end
240
+
241
+ def test_should_be_true_if_state_matches_and_original_condition_is_true
242
+ @condition_result = true
243
+ assert @options[:if].call(@object)
244
+ end
245
+
246
+ def test_should_evaluate_symbol_condition
247
+ @klass.class_eval do
248
+ attr_accessor :callback
249
+ end
250
+
251
+ options = @state_context.validate(:if => :callback)[0]
252
+
253
+ object = @klass.new
254
+ object.callback = false
255
+ assert !options[:if].call(object)
256
+
257
+ object.callback = true
258
+ assert options[:if].call(object)
259
+ end
260
+
261
+ def test_should_evaluate_string_condition
262
+ @klass.class_eval do
263
+ attr_accessor :callback
264
+ end
265
+
266
+ options = @state_context.validate(:if => '@callback')[0]
267
+
268
+ object = @klass.new
269
+ object.callback = false
270
+ assert !options[:if].call(object)
271
+
272
+ object.callback = true
273
+ assert options[:if].call(object)
274
+ end
275
+ end
276
+
277
+ class StateContextProxyWithMultipleIfConditionsTest < Test::Unit::TestCase
278
+ def setup
279
+ @klass = Class.new(Validateable)
280
+ machine = StateMachine::Machine.new(@klass, :initial => :parked)
281
+ state = machine.state :parked
282
+
283
+ @state_context = StateMachine::StateContext.new(state)
284
+ @object = @klass.new
285
+
286
+ @first_condition_result = nil
287
+ @second_condition_result = nil
288
+ @options = @state_context.validate(:if => [lambda {@first_condition_result}, lambda {@second_condition_result}])[0]
289
+ end
290
+
291
+ def test_should_be_true_if_all_conditions_are_true
292
+ @first_condition_result = true
293
+ @second_condition_result = true
294
+ assert @options[:if].call(@object)
295
+ end
296
+
297
+ def test_should_be_false_if_any_condition_is_false
298
+ @first_condition_result = true
299
+ @second_condition_result = false
300
+ assert !@options[:if].call(@object)
301
+
302
+ @first_condition_result = false
303
+ @second_condition_result = true
304
+ assert !@options[:if].call(@object)
305
+ end
306
+ end
307
+
308
+ class StateContextProxyWithUnlessConditionTest < Test::Unit::TestCase
309
+ def setup
310
+ @klass = Class.new(Validateable)
311
+ machine = StateMachine::Machine.new(@klass, :initial => :parked)
312
+ state = machine.state :parked
313
+
314
+ @state_context = StateMachine::StateContext.new(state)
315
+ @object = @klass.new
316
+
317
+ @condition_result = nil
318
+ @options = @state_context.validate(:unless => lambda {@condition_result})[0]
319
+ end
320
+
321
+ def test_should_have_if_option
322
+ assert_not_nil @options[:if]
323
+ end
324
+
325
+ def test_should_be_false_if_state_is_different
326
+ @object.state = nil
327
+ assert !@options[:if].call(@object)
328
+ end
329
+
330
+ def test_should_be_false_if_original_condition_is_true
331
+ @condition_result = true
332
+ assert !@options[:if].call(@object)
333
+ end
334
+
335
+ def test_should_be_true_if_state_matches_and_original_condition_is_false
336
+ @condition_result = false
337
+ assert @options[:if].call(@object)
338
+ end
339
+
340
+ def test_should_evaluate_symbol_condition
341
+ @klass.class_eval do
342
+ attr_accessor :callback
343
+ end
344
+
345
+ options = @state_context.validate(:unless => :callback)[0]
346
+
347
+ object = @klass.new
348
+ object.callback = true
349
+ assert !options[:if].call(object)
350
+
351
+ object.callback = false
352
+ assert options[:if].call(object)
353
+ end
354
+
355
+ def test_should_evaluate_string_condition
356
+ @klass.class_eval do
357
+ attr_accessor :callback
358
+ end
359
+
360
+ options = @state_context.validate(:unless => '@callback')[0]
361
+
362
+ object = @klass.new
363
+ object.callback = true
364
+ assert !options[:if].call(object)
365
+
366
+ object.callback = false
367
+ assert options[:if].call(object)
368
+ end
369
+ end
370
+
371
+ class StateContextProxyWithMultipleUnlessConditionsTest < Test::Unit::TestCase
372
+ def setup
373
+ @klass = Class.new(Validateable)
374
+ machine = StateMachine::Machine.new(@klass, :initial => :parked)
375
+ state = machine.state :parked
376
+
377
+ @state_context = StateMachine::StateContext.new(state)
378
+ @object = @klass.new
379
+
380
+ @first_condition_result = nil
381
+ @second_condition_result = nil
382
+ @options = @state_context.validate(:unless => [lambda {@first_condition_result}, lambda {@second_condition_result}])[0]
383
+ end
384
+
385
+ def test_should_be_true_if_all_conditions_are_false
386
+ @first_condition_result = false
387
+ @second_condition_result = false
388
+ assert @options[:if].call(@object)
389
+ end
390
+
391
+ def test_should_be_false_if_any_condition_is_true
392
+ @first_condition_result = true
393
+ @second_condition_result = false
394
+ assert !@options[:if].call(@object)
395
+
396
+ @first_condition_result = false
397
+ @second_condition_result = true
398
+ assert !@options[:if].call(@object)
399
+ end
400
+ end
401
+
402
+ class StateContextProxyWithIfAndUnlessConditionsTest < Test::Unit::TestCase
403
+ def setup
404
+ @klass = Class.new(Validateable)
405
+ machine = StateMachine::Machine.new(@klass, :initial => :parked)
406
+ state = machine.state :parked
407
+
408
+ @state_context = StateMachine::StateContext.new(state)
409
+ @object = @klass.new
410
+
411
+ @if_condition_result = nil
412
+ @unless_condition_result = nil
413
+ @options = @state_context.validate(:if => lambda {@if_condition_result}, :unless => lambda {@unless_condition_result})[0]
414
+ end
415
+
416
+ def test_should_be_false_if_if_condition_is_false
417
+ @if_condition_result = false
418
+ @unless_condition_result = false
419
+ assert !@options[:if].call(@object)
420
+
421
+ @if_condition_result = false
422
+ @unless_condition_result = true
423
+ assert !@options[:if].call(@object)
424
+ end
425
+
426
+ def test_should_be_false_if_unless_condition_is_true
427
+ @if_condition_result = false
428
+ @unless_condition_result = true
429
+ assert !@options[:if].call(@object)
430
+
431
+ @if_condition_result = true
432
+ @unless_condition_result = true
433
+ assert !@options[:if].call(@object)
434
+ end
435
+
436
+ def test_should_be_true_if_if_condition_is_true_and_unless_condition_is_false
437
+ @if_condition_result = true
438
+ @unless_condition_result = false
439
+ assert @options[:if].call(@object)
440
+ end
441
+ end
@@ -0,0 +1,31 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
2
+
3
+ class StateMachineByDefaultTest < Test::Unit::TestCase
4
+ def setup
5
+ @klass = Class.new
6
+ @machine = @klass.state_machine
7
+ end
8
+
9
+ def test_should_use_state_attribute
10
+ assert_equal :state, @machine.attribute
11
+ end
12
+ end
13
+
14
+ class StateMachineTest < Test::Unit::TestCase
15
+ def setup
16
+ @klass = Class.new
17
+ end
18
+
19
+ def test_should_allow_state_machines_on_any_class
20
+ assert @klass.respond_to?(:state_machine)
21
+ end
22
+
23
+ def test_should_evaluate_block_within_machine_context
24
+ responded = false
25
+ @klass.state_machine(:state) do
26
+ responded = respond_to?(:event)
27
+ end
28
+
29
+ assert responded
30
+ end
31
+ end