Sha256: 71adec1fd5d8bac6682f6fd920f90663e58fd09d98ebba76549d365efb77880d

Contents?: true

Size: 796 Bytes

Versions: 8

Compression:

Stored size: 796 Bytes

Contents

require "cases/helper"

class TestRecord < ActiveRecord::Base
end

class TestUnconnectedAdapter < ActiveRecord::TestCase
  self.use_transactional_tests = false

  def setup
    @underlying = ActiveRecord::Base.connection
    @specification = ActiveRecord::Base.remove_connection
  end

  teardown do
    @underlying = nil
    ActiveRecord::Base.establish_connection(@specification)
    load_schema if in_memory_db?
  end

  def test_connection_no_longer_established
    assert_raise(ActiveRecord::ConnectionNotEstablished) do
      TestRecord.find(1)
    end

    assert_raise(ActiveRecord::ConnectionNotEstablished) do
      TestRecord.new.save
    end
  end

  def test_underlying_adapter_no_longer_active
    assert !@underlying.active?, "Removed adapter should no longer be active"
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ibm_db-5.2.0 test/cases/unconnected_test.rb
ibm_db-5.1.0 test/cases/unconnected_test.rb
ibm_db-5.0.5 test/cases/unconnected_test.rb
ibm_db-5.0.4 test/cases/unconnected_test.rb
ibm_db-5.0.3 test/cases/unconnected_test.rb
ibm_db-5.0.2 test/cases/unconnected_test.rb
ibm_db-4.0.0-x86-mingw32 test/cases/unconnected_test.rb
ibm_db-4.0.0 test/cases/unconnected_test.rb