Methods
- N
- S
- T
Class Public methods
name()
Link
Instance Public methods
setup()
Link
# File activerecord/test/cases/connection_adapters/connection_handler_test.rb, line 6 def setup @handler = ConnectionHandler.new @handler.establish_connection 'america', Base.connection_pool.spec @klass = Class.new do def self.name; 'america'; end end @subklass = Class.new(@klass) do def self.name; 'north america'; end end end
test_active_connections?()
Link
# File activerecord/test/cases/connection_adapters/connection_handler_test.rb, line 21 def test_active_connections? assert !@handler.active_connections? assert @handler.retrieve_connection(@klass) assert @handler.active_connections? @handler.clear_active_connections! assert !@handler.active_connections? end
test_retrieve_connection()
Link
test_retrieve_connection_pool()
Link
test_retrieve_connection_pool_uses_superclass_pool_after_subclass_establish_and_remove()
Link
# File activerecord/test/cases/connection_adapters/connection_handler_test.rb, line 41 def test_retrieve_connection_pool_uses_superclass_pool_after_subclass_establish_and_remove @handler.establish_connection 'north america', Base.connection_pool.spec @handler.remove_connection @subklass assert_same @handler.retrieve_connection_pool(@klass), @handler.retrieve_connection_pool(@subklass) end
test_retrieve_connection_pool_uses_superclass_when_no_subclass_connection()
Link