Sha256: 0b896c9f2f41e7f805968ab767f3b348a73458b490ca086cc3033d0afcfdc10b

Contents?: true

Size: 482 Bytes

Versions: 32

Compression:

Stored size: 482 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.


class NewRelic::Agent::MockScopeListener

  attr_reader :scopes

  def initialize
    @scopes = []
  end

  def notice_first_scope_push(time)
  end

  def notice_push_scope(time)
  end

  def notice_pop_scope(scope, time)
    @scopes << scope
  end

  def notice_scope_empty(time)
  end

  def enabled?
    true
  end
end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
newrelic_rpm-3.8.0.218 test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.7.3.204 test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.7.3.199 test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.7.2.195 test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.7.2.192 test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.7.2.190.beta test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.7.1.188 test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.7.1.182 test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.7.1.180 test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.7.0.177 test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.7.0.174.beta test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.6.9.171 test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.6.8.168 test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.6.8.164 test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.6.7.159 test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.6.7.159.beta test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.6.7.152 test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.6.6.147 test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.6.5.130 test/new_relic/agent/mock_scope_listener.rb
newrelic_rpm-3.6.4.122 test/new_relic/agent/mock_scope_listener.rb