debian-mirror-gitlab/spec/support/helpers/services_helper.rb
2021-02-22 17:27:13 +05:30

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