Sha256: cd5a997c26bc8219ef778f4e36bbc5311a52f8399f1ccaf950ec6987250f6be5
Contents?: true
Size: 462 Bytes
Versions: 11
Compression:
Stored size: 462 Bytes
Contents
# frozen_string_literal: true require_relative "component" module Datadog module CI module TestRetries class NullComponent < Component def initialize end def configure(library_settings) end def with_retries(&block) no_action = proc {} yield no_action end def reset_retries! end def should_retry? false end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems