File: machine_without_database_test.rb

package info (click to toggle)
ruby-state-machines-activerecord 0.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 340 kB
  • sloc: ruby: 1,922; makefile: 5
file content (20 lines) | stat: -rw-r--r-- 455 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require_relative 'test_helper'

class MachineWithoutDatabaseTest < BaseTestCase
  def setup
    @model = new_model(false) do
      # Simulate the database not being available entirely
      def self.connection
        raise ActiveRecord::ConnectionNotEstablished
      end

      def self.connected?
        false
      end
    end
  end

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