class SequelTest::MachineWithEventAttributesOnCustomActionTest

Public Instance Methods

persist() click to toggle source
# File test/unit/integrations/sequel_test.rb, line 1344
def persist
  save
end
setup() click to toggle source
# File test/unit/integrations/sequel_test.rb, line 1342
def setup
  @superclass = new_model do
    def persist
      save
    end
  end
  @model = Class.new(@superclass)
  @machine = StateMachine::Machine.new(@model, :action => :persist)
  @machine.event :ignite do
    transition :parked => :idling
  end
  
  @record = @model.new
  @record.state = 'parked'
  @record.state_event = 'ignite'
end
test_should_not_transition_on_save() click to toggle source
# File test/unit/integrations/sequel_test.rb, line 1364
def test_should_not_transition_on_save
  @record.save
  assert_equal 'parked', @record.state
end
test_should_not_transition_on_valid?() click to toggle source
# File test/unit/integrations/sequel_test.rb, line 1359
def test_should_not_transition_on_valid?
  @record.valid?
  assert_equal 'parked', @record.state
end
test_should_transition_on_custom_action() click to toggle source
# File test/unit/integrations/sequel_test.rb, line 1369
def test_should_transition_on_custom_action
  @record.persist
  assert_equal 'idling', @record.state
end