Sha256: 1142bd5d67cdd3bea023e20071796fe4b22ebaf30513e479b03003a261b7ec9e

Contents?: true

Size: 306 Bytes

Versions: 57

Compression:

Stored size: 306 Bytes

Contents

# (c) Copyright IBM Corp. 2021
# (c) Copyright Instana Inc. 2021

class MockTimer
  attr_reader :opts, :block, :running

  def initialize(*args, &blk)
    @opts = args.first
    @block = blk
    @running = false
  end

  def shutdown
    @running = false
  end

  def execute
    @running = true
  end
end

Version data entries

57 entries across 57 versions & 1 rubygems

Version Path
instana-1.217.1 test/support/mock_timer.rb
instana-1.217.0 test/support/mock_timer.rb
instana-1.216.0 test/support/mock_timer.rb
instana-1.215.1 test/support/mock_timer.rb
instana-1.215.0 test/support/mock_timer.rb
instana-1.214.4 test/support/mock_timer.rb
instana-1.214.3 test/support/mock_timer.rb
instana-1.214.2 test/support/mock_timer.rb
instana-1.214.1 test/support/mock_timer.rb
instana-1.214.0 test/support/mock_timer.rb
instana-1.213.3 test/support/mock_timer.rb
instana-1.213.2 test/support/mock_timer.rb
instana-1.213.1 test/support/mock_timer.rb
instana-1.213.0 test/support/mock_timer.rb
instana-1.212.0 test/support/mock_timer.rb
instana-1.211.0 test/support/mock_timer.rb
instana-1.210.1 test/support/mock_timer.rb
instana-1.210.0 test/support/mock_timer.rb
instana-1.209.8 test/support/mock_timer.rb
instana-1.209.7 test/support/mock_timer.rb