class TransitionCollectionWithActionHookWithNilActionTest

Public Instance Methods

setup() click to toggle source
# File test/unit/transition_collection_test.rb, line 1273
def setup
  super
  
  @machine = StateMachine::Machine.new(@klass, :status, :initial => :first_gear)
  @machine.state :second_gear
  @machine.event :shift_up
  
  @result = StateMachine::TransitionCollection.new([@transition, StateMachine::Transition.new(@object, @machine, :shift_up, :first_gear, :second_gear)]).perform
end
test_should_have_already_persisted_when_running_action() click to toggle source
# File test/unit/transition_collection_test.rb, line 1291
def test_should_have_already_persisted_when_running_action
  assert_equal 'idling', @object.state_on_save
end
test_should_not_have_event_during_action() click to toggle source
# File test/unit/transition_collection_test.rb, line 1295
def test_should_not_have_event_during_action
  assert_nil @object.state_event_on_save
end
test_should_not_have_event_transition_during_save() click to toggle source
# File test/unit/transition_collection_test.rb, line 1303
def test_should_not_have_event_transition_during_save
  assert_nil @object.state_event_transition_on_save
end
test_should_not_write_event() click to toggle source
# File test/unit/transition_collection_test.rb, line 1299
def test_should_not_write_event
  assert_nil @object.state_event
end
test_should_not_write_event_attribute() click to toggle source
# File test/unit/transition_collection_test.rb, line 1307
def test_should_not_write_event_attribute
  assert_nil @object.send(:state_event_transition)
end
test_should_run_action() click to toggle source
# File test/unit/transition_collection_test.rb, line 1287
def test_should_run_action
  assert @object.saved
end
test_should_succeed() click to toggle source
# File test/unit/transition_collection_test.rb, line 1283
def test_should_succeed
  assert_equal true, @result
end