debian-mirror-gitlab/spec/lib/gitlab/cycle_analytics/code_event_fetcher_spec.rb
2019-10-12 21:52:04 +05:30

15 lines
326 B
Ruby

# frozen_string_literal: true
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