Sha256: 7ff2517a29e701c67a1475f550ae3c45b29847a91dd2f267ccb2ca104a7f0c33
Contents?: true
Size: 455 Bytes
Versions: 16
Compression:
Stored size: 455 Bytes
Contents
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
Version data entries
16 entries across 16 versions & 2 rubygems