Sha256: f44473b31d6c6ebeb605f5f221f811b9f9e46b77ccc3e8b08b5d5d5a7952b468
Contents?: true
Size: 843 Bytes
Versions: 26
Compression:
Stored size: 843 Bytes
Contents
require 'test_helper' class ThreadTest < Test::Unit::TestCase context "when logging multiple requests at once" do setup do @log = StringIO.new Samuel.logger = Logger.new(@log) FakeWeb.register_uri(:get, /example\.com/, :status => [200, "OK"]) threads = [] 5.times do |i| threads << Thread.new(i) do |n| Samuel.with_config :label => "Example #{n}" do Thread.pass open "http://example.com/#{n}" end end end threads.each { |t| t.join } @log.rewind end should "not let configuration blocks interfere with eachother" do @log.each_line do |line| matches = %r|Example (\d+).*example\.com/(\d+)|.match(line) assert_not_nil matches assert_equal matches[1], matches[2] end end end end
Version data entries
26 entries across 26 versions & 8 rubygems