summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/lib/gitlab/experimentation_shared_examples.rb
blob: 5baa6478225eba80db31c4f681219a700b0c2391 (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 'tracks assignment and records the subject' do |experiment, subject_type|
  it 'tracks the assignment', :experiment do
    expect(experiment(experiment))
      .to track(:assignment)
      .with_context(subject_type => subject)
      .on_next_instance

    action
  end

  it 'records the subject' do
    stub_experiments(experiment => :candidate)

    expect(Experiment).to receive(:add_subject).with(experiment.to_s, variant: :experimental, subject: subject)

    action
  end
end