class PathWithEncounteredTransitionsTest
Public Instance Methods
setup()
click to toggle source
# File test/unit/path_test.rb, line 268 def setup @klass = Class.new @machine = StateMachine::Machine.new(@klass) @machine.state :parked, :idling, :first_gear @machine.event :ignite do transition :parked => :idling end @machine.event :park do transition :idling => :parked end @object = @klass.new @object.state = 'parked' @path = StateMachine::Path.new(@object, @machine) @path.concat([ @ignite_transition = StateMachine::Transition.new(@object, @machine, :ignite, :parked, :idling), @park_transition = StateMachine::Transition.new(@object, @machine, :park, :idling, :parked) ]) end
test_should_be_complete()
click to toggle source
# File test/unit/path_test.rb, line 289 def test_should_be_complete assert_equal true, @path.complete? end
test_should_not_be_able_to_walk()
click to toggle source
# File test/unit/path_test.rb, line 293 def test_should_not_be_able_to_walk walked = false @path.walk { walked = true } assert_equal false, walked end