class PathWithUnreachedTargetTest
Public Instance Methods
setup()
click to toggle source
# File test/unit/path_test.rb, line 301 def setup @klass = Class.new @machine = StateMachine::Machine.new(@klass) @machine.state :parked, :idling @machine.event :ignite do transition :parked => :idling 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) ]) end
test_should_not_be_able_to_walk()
click to toggle source
# File test/unit/path_test.rb, line 322 def test_should_not_be_able_to_walk walked = false @path.walk { walked = true } assert_equal false, walked end
test_should_not_be_complete()
click to toggle source
# File test/unit/path_test.rb, line 318 def test_should_not_be_complete assert_equal false, @path.complete? end