class MachineCollectionTransitionsWithSameActionsTest

Public Instance Methods

setup() click to toggle source
# File test/unit/machine_collection_test.rb, line 452
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
  @machines[:status] = @machine = StateMachine::Machine.new(@klass, :status, :initial => :first_gear, :action => :save)
  @machine.event :shift_up do
    transition :first_gear => :second_gear
  end
  
  @object = @klass.new
  @object.state_event = 'ignite'
  @object.status_event = 'shift_up'
  @transitions = @machines.transitions(@object, :save)
end
test_should_not_be_empty() click to toggle source
# File test/unit/machine_collection_test.rb, line 471
def test_should_not_be_empty
  assert_equal 2, @transitions.length
end
test_should_perform() click to toggle source
# File test/unit/machine_collection_test.rb, line 475
def test_should_perform
  assert_equal true, @transitions.perform
end