class SequelTest::MachineWithoutDatabaseTest

Public Instance Methods

setup() click to toggle source
# File test/unit/integrations/sequel_test.rb, line 69
def setup
  @model = new_model(false)
end
test_should_allow_machine_creation() click to toggle source
# File test/unit/integrations/sequel_test.rb, line 73
def test_should_allow_machine_creation
  assert_nothing_raised { StateMachine::Machine.new(@model) }
end