class PathWithDeepTargetTest
Public Instance Methods
setup()
click to toggle source
# File test/unit/path_test.rb, line 401 def setup @klass = Class.new @machine = StateMachine::Machine.new(@klass) @machine.state :parked, :idling @machine.event :ignite do transition :parked => :idling end @machine.event :shift_up do transition :parked => :first_gear end @machine.event :park do transition [:idling, :first_gear] => :parked end @object = @klass.new @object.state = 'parked' @path = StateMachine::Path.new(@object, @machine, :target => :parked) @path.concat([ @ignite_transition = StateMachine::Transition.new(@object, @machine, :ignite, :parked, :idling), @park_transition = StateMachine::Transition.new(@object, @machine, :park, :idling, :parked), @shift_up_transition = StateMachine::Transition.new(@object, @machine, :shift_up, :parked, :first_gear) ]) end
test_should_be_able_to_walk()
click to toggle source
# File test/unit/path_test.rb, line 430 def test_should_be_able_to_walk paths = [] @path.walk {|path| paths << path} assert_equal [ [@ignite_transition, @park_transition, @shift_up_transition, StateMachine::Transition.new(@object, @machine, :park, :first_gear, :parked)] ], paths end
test_should_not_be_complete()
click to toggle source
# File test/unit/path_test.rb, line 426 def test_should_not_be_complete assert_equal false, @path.complete? end