summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/cycle_analytics/staging_event_fetcher_spec.rb
blob: bdf1b99c4c90a0fda870eb518c81be6c938620c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::CycleAnalytics::StagingEventFetcher do
  let(:stage_name) { :staging }

  it_behaves_like 'default query config' do
    it 'has a default order' do
      expect(event.order).not_to be_nil
    end
  end
end