Sha256: f56f4485ee2cc5defdd9e935dc08552d84fe0a61e8ba28ee4a7b7465a663f40a
Contents?: true
Size: 485 Bytes
Versions: 13
Compression:
Stored size: 485 Bytes
Contents
# frozen_string_literal: true module Karafka module Testing # A spec client that takes over client delegated methods from the consumers # For specs we do not mark anything as consumed, nor do we really send heartbeats. # Those things are tested in the framework itself class SpecConsumerClient %i[ mark_as_consumed mark_as_consumed! ].each do |caught_delegator| define_method(caught_delegator) { |*| } end end end end
Version data entries
13 entries across 13 versions & 1 rubygems