Welcome to mirror list, hosted at ThFree Co, Russian Federation.

services_helper.rb « helpers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf00781555120a60045640d6ae3281e97bf19f18 (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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