1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
require 'spec_helper'
class GonTestWorker
include Gon::ControllerHelpers
def request
@request ||= ActionDispatch::TestRequest.new
end
def env
request.env
end
def execute
gon.clear
gon.a ||= 1
gon.a += 1
end
def value
gon.a
end
end
describe 'threading behaviour' do
before do
Gon.unstub(:current_gon)
end
it 'is threadsafe' do
threads = []
10.times do
threads << Thread.new do
gtw = GonTestWorker.new
gtw.execute
expect(gtw.value).to eq 2
end
end
threads.each(&:join)
end
end
|