class TransitionCollectionWithActionHookAndSkippedAfterCallbacksTest
Public Instance Methods
setup()
click to toggle source
Calls superclass method
TransitionCollectionWithActionHookBaseTest#setup
# File test/unit/transition_collection_test.rb, line 1208 def setup super @result = StateMachine::TransitionCollection.new([@transition], :after => false).perform end
test_should_have_already_persisted_when_running_action()
click to toggle source
# File test/unit/transition_collection_test.rb, line 1221 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 1225 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 1233 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 1229 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 1237 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 1217 def test_should_run_action assert @object.saved end
test_should_succeed()
click to toggle source
# File test/unit/transition_collection_test.rb, line 1213 def test_should_succeed assert_equal true, @result end