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