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

code_event_fetcher_spec.rb « cycle_analytics « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0267e8c2f69e13593ea1b6803239c1be7686a047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'spec_helper'
require 'lib/gitlab/cycle_analytics/shared_event_spec'

describe Gitlab::CycleAnalytics::CodeEventFetcher do
  let(:stage_name) { :code }

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