File: machine_unmigrated_test.rb

package info (click to toggle)
ruby-state-machines-activerecord 0.103.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 432 kB
  • sloc: ruby: 2,527; makefile: 6
file content (16 lines) | stat: -rw-r--r-- 405 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require_relative 'test_helper'

class MachineUnmigratedTest < BaseTestCase
  def setup
    @model = new_model(false)

    # Drop the table so that it definitely doesn't exist
    @model.connection.drop_table(@model.table_name) if @model.table_exists?
  end

  def test_should_allow_machine_creation
    assert_nothing_raised { StateMachines::Machine.new(@model) }
  end
end