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.202.0 test/support/mock_timer.rb
instana-1.201.0 test/support/mock_timer.rb
instana-1.201.0.pre1 test/support/mock_timer.rb
instana-1.200.0 test/support/mock_timer.rb
instana-1.200.0.pre1 test/support/mock_timer.rb
instana-1.199.6 test/support/mock_timer.rb
instana-1.199.5 test/support/mock_timer.rb
instana-1.199.4 test/support/mock_timer.rb
instana-1.199.3 test/support/mock_timer.rb
instana-1.199.2 test/support/mock_timer.rb
instana-1.199.1 test/support/mock_timer.rb
instana-1.199.0 test/support/mock_timer.rb
instana-1.198.0 test/support/mock_timer.rb
instana-1.198.0.pre1 test/support/mock_timer.rb
instana-1.197.0 test/support/mock_timer.rb
instana-1.197.0.pre2 test/support/mock_timer.rb
instana-1.197.0.pre1 test/support/mock_timer.rb