class MachineCollectionTransitionsWithBlankEventsTest
Public Instance Methods
setup()
click to toggle source
# File test/unit/machine_collection_test.rb, line 355 def setup @klass = Class.new @machines = StateMachine::MachineCollection.new @machines[:state] = @machine = StateMachine::Machine.new(@klass, :state, :initial => :parked, :action => :save) @machine.event :ignite do transition :parked => :idling end @object = @klass.new @object.state_event = '' @transitions = @machines.transitions(@object, :save) end
test_should_be_empty()
click to toggle source
# File test/unit/machine_collection_test.rb, line 369 def test_should_be_empty assert @transitions.empty? end
test_should_perform()
click to toggle source
# File test/unit/machine_collection_test.rb, line 373 def test_should_perform assert_equal true, @transitions.perform end