gitlab-org--gitlab-foss/spec/support/helpers/services_helper.rb

12 lines
239 B
Ruby

# frozen_string_literal: true
require_relative './after_next_helpers'
module ServicesHelper
include AfterNextHelpers
def expect_execution_of(service_class, *args)
expect_next(service_class, *args).to receive(:execute)
end
end