Sha256: 5caaa92a61a7ea8c939504a1894ba343010deffa9ab4c5fddadbec566fb6f067
Contents?: true
Size: 612 Bytes
Versions: 38
Compression:
Stored size: 612 Bytes
Contents
# encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details. require 'new_relic/agent/threading/fake_thread' module ThreadedTestCase def setup_fake_threads @original_thread_class = NewRelic::Agent::Threading::AgentThread.backing_thread_class NewRelic::Agent::Threading::AgentThread.backing_thread_class = FakeThread FakeThread.list.clear end def teardown_fake_threads NewRelic::Agent::Threading::AgentThread.backing_thread_class = @original_thread_class FakeThread.list.clear end end
Version data entries
38 entries across 38 versions & 2 rubygems