You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
572 B
29 lines
572 B
5 years ago
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'rails_helper'
|
||
|
|
||
|
describe ConnectionPool::SharedConnectionPool do
|
||
|
class MiniConnection
|
||
|
attr_reader :site
|
||
|
|
||
|
def initialize(site)
|
||
|
@site = site
|
||
|
end
|
||
|
end
|
||
|
|
||
|
subject { described_class.new(size: 5, timeout: 5) { |site| MiniConnection.new(site) } }
|
||
|
|
||
|
describe '#with' do
|
||
|
it 'runs a block with a connection' do
|
||
|
block_run = false
|
||
|
|
||
|
subject.with('foo') do |connection|
|
||
|
expect(connection).to be_a MiniConnection
|
||
|
block_run = true
|
||
|
end
|
||
|
|
||
|
expect(block_run).to be true
|
||
|
end
|
||
|
end
|
||
|
end
|