summaryrefslogtreecommitdiff
path: root/spec/support/helpers/services_helper.rb
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