summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/requests/api/tracking_shared_examples.rb
blob: 826139635edb6be1e2703aaaeef06f463a7bbc5a (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

RSpec.shared_examples 'a gitlab tracking event' do |category, action|
  it "creates a gitlab tracking event #{action}", :snowplow do
    subject

    expect_snowplow_event(category: category, action: action)
  end
end