Sha256: 0f8125abea872849231daac72f9bf55e30cdd67c9158f93651335839a35b12ae
Contents?: true
Size: 377 Bytes
Versions: 154
Compression:
Stored size: 377 Bytes
Contents
$:.unshift(File.join('..', 'lib')) require 'httpclient' urlstr = ARGV.shift proxy = ENV['HTTP_PROXY'] || ENV['http_proxy'] h = HTTPClient.new(proxy) count = 20 res = [] g = [] for i in 0..count g << Thread.new { res[i] = h.get(urlstr) } end g.each do |th| th.join end for i in 0..(count - 1) raise unless (res[i].content == res[i + 1].content) end puts 'ok'
Version data entries
154 entries across 146 versions & 13 rubygems