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

onboarding_progress_shared_examples.rb « services « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 07025dac68981f678c03aa9107f9856be175fa8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

RSpec.shared_examples 'records an onboarding progress action' do |action|
  include AfterNextHelpers

  it do
    expect_next(Onboarding::ProgressService, namespace)
      .to receive(:execute).with(action: action).and_call_original

    subject
  end
end

RSpec.shared_examples 'does not record an onboarding progress action' do
  it do
    expect(Onboarding::ProgressService).not_to receive(:new)

    subject
  end
end